New Landing How can we help? Themeforest Theme Support Neighborhood Cant Seem to rename Additional Information tab with more than one word?

Viewing 4 posts - 1 through 4 (of 4 total)
  • #225014
    MarieWorks
    Member
    Post count: 225

    Hi,

    We are trying to rename our “Additional information” tab to “Dimensions & Care Info”

    I have got this working on our local server using only “Dimensions” however if I try with any other longer text string it oes not work…?

    Can you help?

    php. I have used in the child theme functions.php file is as below

    We’d also like to keep this tab expanded by default as well – how would we do that ?

    <?php
    add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
    function woo_rename_tabs( $tabs ) {
    
    	$tabs['description']['title'] = __( 'More Information' );		// Rename the description tab
    	$tabs['additional_information']['title'] = __( ‘dimensions’ );	// Rename the additional information tab
    
    	return $tabs;
    
    }
    
    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
    
    function woo_remove_product_tabs( $tabs ) {
    
        unset( $tabs['reviews'] ); 			// Remove the reviews tab
    
        return $tabs;
    
    }
    ?>
    

    Cheers
    C

    Attachments:
    You must be logged in to view attached files.
    #225016
    David Martin – Support
    Moderator
    Post count: 20834

    The surrounding speech mark looks wrong.

    __( ‘dimensions’ );

    Please change to this:

    __( 'dimensions' );

    – David.

    #225020
    MarieWorks
    Member
    Post count: 225

    ah thanks David – good spot.

    How do we make it expanded by default?

    Thanks

    C

    #225032
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Since you are changing the initial tab it should be open by default.

    -Rui

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

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register