Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

how to change woocommerce header message This is where you can add new products to your store.

// 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' );
Source by docs.oceanwp.org #
 
PREVIOUS NEXT
Tagged: #change #woocommerce #header #message #This #add #products
ADD COMMENT
Topic
Name
6+7 =