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 sakilimran/eea5fb3396eab5ab0257622f0b322edd to your computer and use it in GitHub Desktop.
Save sakilimran/eea5fb3396eab5ab0257622f0b322edd to your computer and use it in GitHub Desktop.
<?php
// Rename single product page tab
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
function woo_rename_tabs( $tabs ) {
$tabs['additional_information']['title'] = __( 'Specifications' ); // 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