Skip to content

Instantly share code, notes, and snippets.

@imuhammadshoaib
Forked from woogists/wc-rename-tabs.php
Created August 17, 2020 15:50
Show Gist options
  • Save imuhammadshoaib/ebea54d846adbed03e810851d0705c1d to your computer and use it in GitHub Desktop.
Save imuhammadshoaib/ebea54d846adbed03e810851d0705c1d 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