Change the term " Additional Information" at the Single Product Page

Hi there,

How can i change the term " Additional Information" at the Single Product Page?

Please help

Thank you

Hi there,

Please add this code in the functions.php file of the child theme:

function update_product_tabs( $tabs ) {
    
    $tabs['additional_information']['title'] = 'The New Text Here';
    
    return $tabs;
}

add_filter( 'woocommerce_product_tabs', 'update_product_tabs', 98 );

Hope this helps.

It works perfectly.

I want to create a shop page and set it as a home page. But tried to work out for hours, still could not do it.
I want to send you my site credential to access, how can send u a private message?

Thank you

Hi there,

Have you tried setting it in Settings > Reading then set the Shop page as the static homepage?

Let us know how it goes.

I did, but the problem is i could not add the shortcode to that page. Check it here: https://viralifi.com/premium/

Hi tried,

I tried setting up the shop index page and set it as the homepage in the Reading page and it works fine.

You just have to make sure that you have set the page that you have created as the shop page as well in Woocommerce > Settings > Display Shop page.

But you made mention of a shortcode which you do not need if you set the page you created as the shop page then as the home page.

It works. thank you so much.

How can i change the term " Description" at single product page?

Thank you.

Hello There,

To change the “Description” tab tile, you will need to update the previous code given by @Jade. Please use this instead:

function update_product_tabs( $tabs ) {
    
    $tabs['description']['title'] = 'The New Text Here';
    $tabs['additional_information']['title'] = 'The New Text Here';    

    return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'update_product_tabs', 98 );

Hope this helps. Please let us know how it goes.

It works just great. thank you.

Hi @sovann,

Happy to hear that.

Feel free to ask us again.

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.