


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;
}
I use the Code Snippets plugin to add the above function code to my WordPress site.