Skip to content

Instantly share code, notes, and snippets.

@arelthia
Last active August 29, 2015 14:24
Show Gist options
  • Select an option

  • Save arelthia/49f760f06549c2baaa5b to your computer and use it in GitHub Desktop.

Select an option

Save arelthia/49f760f06549c2baaa5b to your computer and use it in GitHub Desktop.
Change the WooCommerce Product Description Heading
//Change the Product description heading
add_filter('woocommerce_product_description_heading', 'ps_custom_product_description_heading');
function ps_custom_product_description_heading(){
return __( 'Custom Product Description' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment