Skip to content

Instantly share code, notes, and snippets.

@tuanbbhero
Created February 27, 2019 23:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuanbbhero/a896e0b2072978e8bc906e78cbd7b8c3 to your computer and use it in GitHub Desktop.
Save tuanbbhero/a896e0b2072978e8bc906e78cbd7b8c3 to your computer and use it in GitHub Desktop.
Rename Description Tab in WooCommerce Product Page
add_filter( 'woocommerce_product_description_tab_title', 'bbloomer_rename_description_product_tab_label' );
function bbloomer_rename_description_product_tab_label() {
return 'New Name';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment