• Resolved udaythec

    (@udaythec)


    How to rename Seller info text in product tabs of product detail page.

Viewing 1 replies (of 1 total)
  • purvabathe

    (@purvabathe)

    Hi,

    Please add below filter code into your themes function.php. Change “More Information” text with the renamed text.

    add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
    function woo_rename_tabs( $tabs ) {
    
    	$tabs['seller']['title'] = __( 'More Information' );
    	return $tabs;
    
    }

    Hope this code will help you.

    • This reply was modified 8 years ago by purvabathe.
    • This reply was modified 8 years ago by purvabathe.
Viewing 1 replies (of 1 total)
  • The topic ‘How to rename “Seller info” text tab in product detail page’ is closed to new replies.