Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. /**
  3. * Rename product data tabs
  4. */
  5. add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
  6. function woo_rename_tabs( $tabs ) {
  7.  
  8. $tabs['description']['title'] = __( 'More Detail' ); // Rename the description tab
  9. $tabs['reviews']['title'] = __( 'Ratings' ); // Rename the reviews tab
  10. $tabs['additional_information']['title'] = __( 'Product Data' ); // Rename the additional information tab
  11.  
  12. return $tabs;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement