Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hirejordansmith/93729783fe88371faef45feae45847aa to your computer and use it in GitHub Desktop.
Save hirejordansmith/93729783fe88371faef45feae45847aa to your computer and use it in GitHub Desktop.
How to Change or Remove the Product Description Title in WooCommerce
<?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 '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment