Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created April 26, 2023 16:11
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
<?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