Code-Snippets-Functions/Execute a function on a child site/Astra/remove-category-archive-title.txt

7 lines
221 B
Text

add_filter( 'woocommerce_show_page_title', 'remove_category_title_from_product_archive' );
function remove_category_title_from_product_archive( $title ) {
if ( is_product_category() ) {
$title = false;
}
return $title;
}