// source --> https://polyplas.com.au/wp-content/themes/nbw-theme-child/script.js jQuery(document).ready(function($) { $('.product-slider').slick({ dots: true, infinite: true, speed: 300, slidesToShow: 1, arrows: true }); var product_name=$(".single-product .product-title").text().trim(); var product_cat=$(".single-product .single-product-breadcrumb-section .woocommerce-breadcrumb a:last-child").text(); $("input[name='text-product']").val(product_name); $("input[name='text-category']").val(product_cat); $("#enquire_now").click(function(){ $('html, body').animate({ scrollTop: $(".woocommerce-tabs").offset().top }, 2000); $('.enquire_tab a').trigger('click'); }); $('.applications-grid .row').each(function() { var link=$(this).find('a').attr('href'); $(this).find('.images_wrap img').wrap(''); }); });