Archived topic
How to remove product image from product-pages?
1 reply · Started by Sascha on June 13, 2022
Viewing posts 1–2 of 2
Hello,
in GPP > Customizer: I was able to disable several items of single product pages, but didn't find the option for disabling the product-images.
Can you help me with a code snippet that I would add per Element > Hook?
2nd question: If I'd use CSS (display:none) instead of a Code Snippet, how would this effect the page load?
Thank you in advance and kind regards,
Sascha
Hi there,
add this PHP Snippet to your site:
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 );
remove_action( 'woocommerce_product_thumbnails', 'woocommerce_show_product_thumbnails', 20 );
This archived topic is closed to new replies.