Skip to content

Instantly share code, notes, and snippets.

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 MinaPansuriya/55d6465ca3e3b9efaa699f0590ae4599 to your computer and use it in GitHub Desktop.
Save MinaPansuriya/55d6465ca3e3b9efaa699f0590ae4599 to your computer and use it in GitHub Desktop.
/**
* @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