WooCommerce Shop – Remove “This is where you can add new products to your store”

WooCommerce Shop "This is where you can add new products to your store"
WooCommerce Shop “This is where you can add new products to your store”

Remove “This is where you can add new products to your store”

Remove the description text from just below the “Shop” title on the WooCommerce Shop page. I have no idea why this description text even exists! Note: This will NOT remove the description text from other Product Category Pages.

add_filter('woocommerce_register_post_type_product', 'remove_shop_default_description');
function remove_shop_default_description($args){
	$args['description'] = '';
	return $args;
}

Source: https://wordpress.org/support/topic/remove-text-this-is-where-you-can-add-products-to-your-store/#post-11548982

I use the Code Snippets plugin to add the above function code to my WordPress site.

Similar Posts

Leave a Reply

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