Men

Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit sed ut.

Visualizzazione di 1-12 di 14 risultati

jQuery(function ($) { function initThumbnailHover() { var $gallery = $('.single-product .woocommerce-product-gallery'); if (!$gallery.length) { return; } var $thumbs = $gallery.find('.flex-control-thumbs li img'); if (!$thumbs.length) { return; } /* Remove previous handler */ $thumbs.off('mouseenter.shellyThumbnail'); /* Hover thumbnail */ $thumbs.on( 'mouseenter.shellyThumbnail', function () { /* * Trigger WooCommerce's * normal thumbnail click. */ $(this).trigger('click'); } ); } /* ===================================================== INITIALIZE ===================================================== */ initThumbnailHover(); /* ===================================================== AFTER PAGE LOAD ===================================================== */ $(window).on('load', function () { setTimeout(function () { initThumbnailHover(); }, 500); }); /* ===================================================== AFTER THUMBNAIL CLICK Allow WooCommerce to rebuild its zoom layer ===================================================== */ $(document).on( 'click.shellyGallery', '.single-product .flex-control-thumbs li img', function () { setTimeout(function () { /* * Do NOT create our own zoom. * * WooCommerce automatically creates: * * .zoomImg */ }, 300); } ); /* ===================================================== WOOCOMMERCE UPDATES ===================================================== */ $(document).on( 'updated_wc_div wc_fragments_loaded wc_variation_has_changed', function () { setTimeout(function () { initThumbnailHover(); }, 500); } ); });