Looking for a simple way to Change or Remove the Product Description Title in WooCommerce? I’ve got you covered!
Simply add one of the two snippets below to your functions.php file and change the title to whatever you want and you’re good to go!
<?php | |
// Change the Product Description Title | |
add_filter('woocommerce_product_description_heading', 'hjs_product_description_heading'); | |
function hjs_product_description_heading() { | |
return __('NEW TITLE HERE', 'woocommerce'); | |
} | |
// Remove the Product Description Title | |
add_filter('woocommerce_product_description_heading', 'hjs_product_description_heading'); | |
function hjs_product_description_heading() { | |
return ''; | |
} |
Thank you brother.
This was very helpful.
Sure thing Roger, glad I could help!
Thank you so much! Just solved my problem. Now I’m just trying to figure out how to remove the testimonials from my website.
Hi Judi, glad it solved your problem! The testimonials are probably being added by a plugin or may be registered in the theme itself.