Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created April 26, 2023 16:11
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 plugin-republic/1444440148998239db54dd4168ce6e96 to your computer and use it in GitHub Desktop.
Save plugin-republic/1444440148998239db54dd4168ce6e96 to your computer and use it in GitHub Desktop.
<?php
/**
* Rename product data tabs
*/
function woo_rename_tabs( $tabs ) {
$tabs['additional_information']['title'] = __( 'Product Data' );
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment