Home › Forums › WoodMart support forum › Tab on product page showing content when not selected › Reply To: Tab on product page showing content when not selected
May 9, 2022 at 1:27 pm
#374245
malcolmff
Participant
I forgot to also mention that this is the long description tab. I added this code months ago to change the label:
/**
* Rename product data tabs
*/
add_filter( \'woocommerce_product_tabs\', \'woo_rename_tabs\', 98 );
function woo_rename_tabs( $tabs ) {
$tabs[\'description\'][\'title\'] = __( \'Warranty & Returns\' ); // Rename the description tab
return $tabs;
}
- This reply was modified 2 years, 7 months ago by malcolmff.