Rename the product tabs
Renames the product page tabs, for example “Additional information” to “Specifications”.
<?php
add_filter(
'woocommerce_product_tabs',
static function ( $tabs ) {
if ( isset( $tabs['additional_information'] ) ) {
$tabs['additional_information']['title'] = 'Specifications';
}
if ( isset( $tabs['description'] ) ) {
$tabs['description']['title'] = 'Details';
}
return $tabs;
},
98
);
Good to know
Write your own tab names (and translate them if your shop isn’t in English).
In these packs
- WooCommerce: shop and product pages: Badges, price display, tabs and layout for your shop and product pages.