Last active
November 2, 2018 11:09
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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