sinanisler logo

Single Product Tab Name Change or Renaming or Replacing

Single Product Tab Name Change or Renaming or Replacing

add_filter( 'woocommerce_product_tabs', 'woo_rename_tab', 98);
function woo_rename_tab($tabs) {

 $tabs['description']['title'] = 'More info';

 return $tabs;
}

Leave the first comment