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