Hi,
We are sorry but we are not able to locate the problem you are experiencing. Kindly, clear the cache and reload the page again. However, we have found another problem with your site. The slider on your site does not show previous and next button. This is because images on your site have margin. We can remove those margins for slider’s next and prev button using jquery. To do so, we will just have to add two more lines in the code we have provided earlier. So the final code will be
jQuery(document).ready(function(){
var get_all_margin_of_product_image = new Array();
var reference_of_product_image = jQuery(".wp-post-image:first");
get_all_margin_of_product_image.push(reference_of_product_image.css('marginTop'), reference_of_product_image.css('marginLeft'), reference_of_product_image.css('marginRight'), reference_of_product_image.css('marginBottom'));
reference_of_product_image.parent('a').css({ 'marginTop':get_all_margin_of_product_image[0] , 'marginLeft':get_all_margin_of_product_image[1], 'marginRight': get_all_margin_of_product_image[2], 'marginBottom': get_all_margin_of_product_image[1]});
reference_of_product_image.css('margin' , '0px');
jQuery("ul.bxslider li img").css('margin', '0px');
jQuery(".bx-prev, .bx-next").find('img').css('margin', '0px');
});
Kindly, replace the code you had added in ‘swap_images.js’ with above code.
Thanks,
WisdmLabs