Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1157892

    Hi, I want to completely remove the title and category description from being shown on product category pages (Not only by display:none;).

    How can I do this?

    #1158058

    Hey nikolaj,

    Please try this in your functions.php file:

    if(is_product_category()) {
        add_filter( 'woocommerce_show_page_title', '__return_false' );  
    }

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.