Comment changer le message d'en-tête WooCommerce C'est là que vous pouvez ajouter de nouveaux produits à votre magasin.

// Remove the Shop page subheading
function my_remove_shop_page_header_subheading( $subheading ) {
 
    if ( is_shop() ) {
        $subheading = false;
    }
 
    // Return the subheading
    return $subheading;
    
}
add_filter( 'ocean_post_subheading', 'my_remove_shop_page_header_subheading' );
Poor Panther