Advertisement
libdo

Untitled

Oct 14th, 2017
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //* Conditionally remove the Featured Product Image from the single-product page
  2. function remove_gallery_and_product_images() {
  3. if ( is_product() && is_single(array(1092, 1093, 1094) ) ) {
  4. remove_action( 'woocommerce_before_single_product_summary',
  5. 'woocommerce_show_product_images', 20 );
  6. add_filter('body_class', 'no_prod_imgs_class');
  7. }
  8. }
  9. add_action('template_redirect', 'remove_gallery_and_product_images');
  10.  
  11. //* Add CSS for removed featured images from multiple specific product detail
  12. pages
  13. function no_prod_imgs_class($classes) {
  14. $classes[] = 'no-product-images';
  15. return $classes;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement