Home » WooCommerce » wooCommerce remove the shop title

wooCommerce remove the shop title

by usign this simple php code you can remove the shope page tilte. you can add this bellow code in functions.php file

// Remove shop page title

add_filter('woocommerce_show_page_title', 'wpdumi_hide_shop_page_title');

function wpdumi_hide_shop_page_title($title)
{
    if (is_shop()) $title = false;
    return $title;
}
Duminda Wijerathna

An all round web designer building websites Over 18 years. Interested in achieving a suitable placement in the field of IT in a growth oriented organization which offers diverse job responsibilities in order to utilize and improve my skills, Knowledge and experience.

Leave a Comment

Your email address will not be published. Required fields are marked *