Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1406067
    Itwebdevelopment
    Participant

    Hi I’d like to change the additional information tab in woocommerce:

    https://gyazo.com/d2bfdab8f8af371ba12e0ab0fecc7995

    to say “specs”

    Is this possible?

    Thanks!!

    #1406147
    Thai
    Moderator

    Hi There,

    Please add the following code under functions.php file locates in your child theme:

    add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
    function woo_rename_tabs( $tabs ) {
    
    	$tabs['additional_information']['title'] = __( 'Specs' );	// Rename the additional information tab
    	return $tabs;
    
    }

    Hope it helps 🙂

  • <script> jQuery(function($){ $("#no-reply-1406067 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>