The Product page shows a partial LOADING Forever (under the Price)
The WOOCOMMERCE engineer reported the following, and suggest me to seek help from the THEME developer.
Product Page has some jQuery that is throwing an error:
(index):776 Uncaught TypeError: Cannot read property ‘reinit’ of undefined
Looking at your page, this is caused by this script:
<script type=”text/javascript”>
(function() {
var options = {
items:5,
autoPlay: false,
pagination: true,
navigation: true,
navigationText:false,
rewindNav: false,
itemsCustom: [[0, 2], [479, 2], [619, 2], [768, 3], [1200, 4], [1600, 4]]
};
jQuery(“.slider-8336 .productCarousel”).owlCarousel(options);
var owl = jQuery(“.slider-8336 .productCarousel”).data(“owlCarousel”);
jQuery( window ).bind( “vc_js”, function() {
owl.reinit(options);
} );
})();
</script>
It looks like this is coming from the theme adding a carousel. This is what is causing jQuery to break on that page and the Loading to never complete.