In offerta!');
elements = "#sns_thumbs_clone a.zoom:not(.cloned)";
if( jQuery('.sns_main_products .sns-btn-popup').length && jQuery('.sns_main_products a.woocommerce-main-image').length ){
jQuery('.sns_main_products .sns-btn-popup').attr('href', jQuery('.sns_main_products a.woocommerce-main-image').attr('href') );
elements = elements + ", .sns_main_products .sns-btn-popup";
jQuery('.sns_main_products a.woocommerce-main-image').click(function(){
return false;
});
}
jQuery(elements).prettyPhoto({
hook: 'data-rel',
social_tools: false,
theme: 'pp_woocommerce',
horizontal_padding: 20,
opacity: 0.8,
deeplinking: false
});
// Carousel Gallery
jQuery('.col-lg-10 .sns-thumbnails #sns_thumbs').owlCarousel({
items: 3,
responsive : {
0 : { items: 4 },
480 : { items: 6 },
768 : { items: 6 },
992 : { items: 6 },
1200 : { items: 7 }
},
loop:true,
dots: false,
onInitialized: callback,
slideSpeed : 800
});
function callback(event) {
if(this._items.length > this.options.items){
jQuery('.sns-thumbnails .navslider').show();
}else{
jQuery('.sns-thumbnails .navslider').hide();
}
}
jQuery('.sns-thumbnails .prev').on('click', function(e){
e.preventDefault();
jQuery('.sns-thumbnails .thumbnails').trigger('prev.owl.carousel');
});
jQuery('.sns-thumbnails .next').on('click', function(e){
e.preventDefault();
jQuery('.sns-thumbnails .thumbnails').trigger('next.owl.carousel');
});
});