Last active
October 4, 2016 13:46
-
-
Save MinaPansuriya/55d6465ca3e3b9efaa699f0590ae4599 to your computer and use it in GitHub Desktop.
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
/** | |
* @Title: Rename Single Product pages Tabs | |
* @Author: Mina Pansuriya | |
* @Website: http://minapansuriya.com | |
*/ | |
add_filter( 'woocommerce_product_tabs', 'pbs_rename_woo_product_tabs', 98 ); | |
function pbs_rename_woo_product_tabs( $tabs ) { | |
$tabs['description']['title'] = 'Product Description'; | |
$tabs['reviews']['title'] = 'Ratings'; | |
$tabs['additional_information']['title'] = 'Additional Information'; | |
return $tabs; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment