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
1 2 3 4 5 6 7 8 9 10 11 |
// 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'); } |