(function ($) { $('#accordion-container').accordion({ firstChildExpand: true, slideSpeed: 500, dropDownIcon: "▼", }); $( 'a.woocommerce-review-link' ).click( function(e) { e.preventDefault(); if( $('#tab-reviews').is(':hidden') ) $( '.reviews_tab' ).click(); $('html, body').animate({ scrollTop: $("#tab-reviews").offset().top - 40 }, 1000); return true; }); var hash = window.location.hash; var url = window.location.href; if ( hash.toLowerCase().indexOf( 'comment-' ) >= 0 || hash === '#reviews' ) { $( 'li.reviews_tab' ).click(); } else if ( url.indexOf( 'comment-page-' ) > 0 || url.indexOf( 'cpage=' ) > 0 ) { $( 'li.reviews_tab' ).click(); } $('.product-image-archive').hover( function() { $(this).find('.view-product').show(); }, function() { $(this).find('.view-product').hide(); }); })(jQuery);