- Web templates
- E-commerce Templates
- CMS & Blog Templates
- Facebook Templates
- Website Builders
WooCommerce. How to remove “product description” text
April 23, 2015
WooCommerce. How to remove “product description” text
This tutorial shows how to remove "Product description" title in WooCommerce store.

-
Open admin section, go to Appearance -> Editor. Open custom-function.php file:
-
Add the following filter before closing php tag:
add_filter( 'woocommerce_product_description_heading', 'remove_product_description_heading' ); function remove_product_description_heading() { return ''; }
-
Save changes you have performed in the file:
-
Refresh the page. We have removed title "Product description":
Feel free to check the detailed video tutorial below:
WooCommerce. How to remove “product description” text