[wd_asp elements=’search’ ratio=’100%’ id=1]

How to remove “description” heading in product description? – WooCommerce

25th November 2020

WooCommerce

woocommerce category codehaven

Woocommerce provides a couple of tabs such as Product Information, and Description. you may find under the tab it repeats which can look weird.
to remove the duplicate wording use the code below in the functions file.php


// Remove the product description Title
add_filter( 'woocommerce_product_description_heading', '__return_null' );

// Change the product description title
add_filter('woocommerce_product_description_heading', 'change_product_description_heading');
function change_product_description_heading() {
return __('NEW TITLE HERE', 'woocommerce');
}