Syl Mulder
Syl Mulder

Reputation: 81

Remove Product Categories title from woocommerce pages

Does anybody know how to remove (or hide) the Product Categories title on woocommerce pages?

It's using the h4 font settings in theme.php, these are also used for other element titles that I do not want to hide/remove. Any ideas?

Thanks so much!

Upvotes: 0

Views: 11178

Answers (2)

derfelius
derfelius

Reputation: 21

In your theme functions.php add:

add_filter('woocommerce_show_page_title', create_function('$result', 'return false;'), 20);

Upvotes: 2

Omar Tariq
Omar Tariq

Reputation: 7724

Paste this code in your style.css file:-

.sidepanel.woocommerce.widget_product_categories h4 {
   display: none;
}

Upvotes: 0

Related Questions