Skip to content

Instantly share code, notes, and snippets.

@madeincosmos
Created February 21, 2018 15:00
Show Gist options
  • Save madeincosmos/5f7e291435bdf405a6509caa3e4bd0d0 to your computer and use it in GitHub Desktop.
Save madeincosmos/5f7e291435bdf405a6509caa3e4bd0d0 to your computer and use it in GitHub Desktop.
Change 'Description' tab title on the product page
function custom_description_tab_name ( $name ) {
return 'Ingredients';
}
add_filter( 'woocommerce_product_description_heading', 'custom_description_tab_name', 10 );
add_filter( 'woocommerce_product_description_tab_title', 'custom_description_tab_name', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment