Change “Additional Information” Text on product page
-
Hi, I’d like to change the “Additional Information” tab title on the product pages to “Product Details.” Could you help?
Hello,
For change the text Try to use loco translate plugin for this:
https://xtemos.com/docs-topic/translate-woodmart-theme-with-loco-translate/
If you have any questions feel free to contact us.
Best Regards
Thanks for the suggestion to use a plugin, but I’d prefer a CSS solution to change the “Additional Information” text. please provide the necessary code?
Hello,
Unfortunately, changing the “Additional Information” tab title via CSS isn’t possible as CSS is for styling, not content. The title text can only be modified through PHP or using a plugin like Loco Translate.
Try to add the following code in the function.php of the child theme to rename the products tabs.
function woo_rename_tabs( $tabs ) {
$tabs['description']['title'] = __( 'More Information' ); // Rename the description tab
$tabs['reviews']['title'] = __( 'Ratings' ); // Rename the reviews tab
$tabs['additional_information']['title'] = __( 'Product Data' ); // Rename the additional information tab
return $tabs;
}
Best Regards