Reputation: 81
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
Reputation: 21
In your theme functions.php add:
add_filter('woocommerce_show_page_title', create_function('$result', 'return false;'), 20);
Upvotes: 2
Reputation: 7724
Paste this code in your style.css file:-
.sidepanel.woocommerce.widget_product_categories h4 {
display: none;
}
Upvotes: 0