• Resolved texasbrit

    (@texasbrit)


    How can I remove images from the product thumbnails? Only the thumbnails, I want the featured image on the single product page to remain.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try:

      add_action( 'wp_loaded', 'hide_woocommerce_shop_images' );
      function hide_woocommerce_shop_images() {
        remove_action(	'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
      }

    The code goes in functions.php for your child theme.

    However, some themes have their own shop templates. If the above doesn’t work, please say what theme you are using.

    Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – we’ll be here if and/or when you are ready to continue.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘removing image from product thumbnails’ is closed to new replies.