Remove the product category archive title in WooCommerce using Astra

Remove the product category archive title in WooCommerce using Astra on child sites.

Snippet Type

Execute on Child Sites

Snippet

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;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.