How to rename product tabs in single product view?
add_filter( 'woocommerce_product_tabs', 'woo_rename_tab', 98);
function woo_rename_tab($tabs) {
if ($tabs['description']['title']){
$tabs['description']['title'] = 'Additional information';
return $tabs;
}
}