Yes, please keep Cloudflare disabled.
Can you please test now I have made a couple more adjustments. Within js/functions.js
Locate:
if ( body.hasClass('product-fw-split') ) {
productSliderThumbsPos = "left";
sliderVertHeight = 1000;
}
Change to:
if ( body.hasClass('product-fw-split') ) {
productSliderThumbsPos = "left";
sliderVertHeight = windowHeight - 90;
}
Locate
if ( sliderHeight > windowHeight ) {
productMain.css('height', sliderHeight);
} else {
productMain.css('height', windowHeight);
}
Change to:
`if ( sliderHeight > windowHeight ) {
productMain.css(‘height’, windowHeight);
slider.css(‘height’, windowHeight);
} else {
productMain.css(‘height’, windowHeight);
slider.css(‘height’, windowHeight);
}`