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

0

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' );
Posted by: Guest on December-04-2020

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

Code answers related to "TypeScript"

Browse Popular Code Answers by Language