Created
February 21, 2018 15:00
-
-
Save madeincosmos/5f7e291435bdf405a6509caa3e4bd0d0 to your computer and use it in GitHub Desktop.
Change 'Description' tab title on the product page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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