skip to Main Content

How remove emoji Magnifying glass in Woocommerce

What I tried: remove_action('wp_head', 'print_emoji_detection_script', 7); remove_action('wp_print_styles', 'print_emoji_styles'); in css: .woocommerce-product-gallery__trigger img { display: none !important; ---///this works in chrome but not in mozilla } in js i tried without and with setTimeout: setTimeout(() => { $('woocommerce-product-gallery__trigger').find('img').removeAttr('alt'); $('woocommerce-product-gallery__trigger').empty() ---////this tried…

VIEW QUESTION
Back To Top
Search