Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ellegaarddk
Last active November 2, 2018 11:09
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 ellegaarddk/5fcee2917d7aada89c93b48a956cb9c4 to your computer and use it in GitHub Desktop.
Save ellegaarddk/5fcee2917d7aada89c93b48a956cb9c4 to your computer and use it in GitHub Desktop.
This will change the title (Description) of the description tab to something else - here 'Event information'. Use a suitable txt_domain for translations.
<?php
/* This will change the title (Description) of the description tab to something else
* @origin https://wp-pro.dk/guides/tilpas-woocommerce-faneblades-titel-og-overskrift
*/
add_filter( 'woocommerce_product_tabs', 'eid_change_product_description_tab_title', 10, 1 );
function eid_change_product_description_tab_title( $tabs ) {
global $post;
if ( isset( $tabs['description']['title'] ) )
$tabs['description']['title'] = __('Event information', 'txt_domain'); // change for something else, ready for translation
return $tabs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment