• Hi,
    I’m trying to remove everything but the thumbnail in my shop pages.
    So far I found Hooks to remove the cart button and the price, but can’t seem to figure out what I need to add to remove the product title.

    I want nothing but thumbnails left in my shop pages.

    I will be so grateful if someone could lead me in the right direction.

    So far I have added this code to my functions.php file..

    function remove_loop_button(){
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    }
    add_action('init','remove_loop_button');

  • The topic ‘WooCommerce – Remove everything but thumbnail in shop pages?’ is closed to new replies.