Skip to content

Instantly share code, notes, and snippets.

@khikrama
Forked from woogists/wc-rename-tabs.php
Created July 7, 2019 21:04
Show Gist options
  • Save khikrama/0b1e309875edf1427b061482339f9a08 to your computer and use it in GitHub Desktop.
Save khikrama/0b1e309875edf1427b061482339f9a08 to your computer and use it in GitHub Desktop.
[Frontend Snippets][Editing product data tabs] Renaming product data tabs
/**
* Rename product data tabs
*/
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
function woo_rename_tabs( $tabs ) {
$tabs['description']['title'] = __( 'More Information' ); // Rename the description tab
$tabs['reviews']['title'] = __( 'Ratings' ); // Rename the reviews tab
$tabs['additional_information']['title'] = __( 'Product Data' ); // Rename the additional information tab
return $tabs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment