Home Forums WoodMart support forum Change “Additional Information” Text on product page

Change “Additional Information” Text on product page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #600495

    son0002
    Participant

    Hi, I’d like to change the “Additional Information” tab title on the product pages to “Product Details.” Could you help?

    #600788

    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

    #600899

    son0002
    Participant

    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?

    #600942

    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

Viewing 4 posts - 1 through 4 (of 4 total)