How can I rename the "description" tab of woocommerce single product page?

Hi all,

How can I rename the "description" tab of woocommerce single product page?

I already using the code snipper or Loco translate plugin, its both not work and annoying me.

my code :

add_filter( 'woocommerce_product_tabs', 'wpb_rename_tabs', 98 );
function wpb_rename_tabs( $tabs ) {
    $tabs['description']['title'] = __( 'More Information', 'woocommerce' );       // Rename the description tab 
    return $tabs;
}


Comments

  • Hi,

    The description tab is based on the main language of your website, and it is translated automatically.

    Changing it requires files modifications, but we do not provide help with such customization, and you will have to contact your web developer to help you with it.


    Best regards

Sign In or Register to comment.