How to hide the button, that loads more elements on click if items of that type are less then 6? – Woocommerce
I try to do it like that var matched = $(".gallery_thumbs .woocommerce-product-gallery__image"); console.log(matched.length); if ((matched < 7) && ($(window).width() > 1024)) { $('button.gallery_thumbs-toggle').hide(); } I tried the script by alert if (($(window).width() > 1024)) { alert(1); } is working fine,…