Home Forums WoodMart support forum PRODUCT PAGE – CHANGE TAB INFO

PRODUCT PAGE – CHANGE TAB INFO

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #44198

    gilesp
    Participant

    Hi, is it possible to change the word ‘decription’ to ‘specification’ on the first tab on this page and change ‘delivery and shipping’ to ‘delivery and returns’

    And is there a way to make ‘reviews’ appear as the 3rd tab, so that ‘delivery and shipping’ is the 2nd tab?

    I’m happy to do this if you tell me where to look.

    Thanks,
    Giles

    Attachments:
    You must be logged in to view attached files.
    #44220

    Artem Temos
    Keymaster

    Hi,

    Try to add the following PHP code snippet to the child theme functions.php file to do this

    function woodmart_additional_product_tab( $tabs ) {
    
    		$tab_title = woodmart_get_opt( 'additional_tab_title' );
    
    		if( empty( $tab_title ) ) return $tabs;
    		
    		$tabs['woodmart_additional_tab'] = array(
    			'title' 	=> $tab_title,
    			'priority' 	=> 25,
    			'callback' 	=> 'woodmart_additional_product_tab_content'
    		);
    
    		return $tabs;
    
    	}

    You can translate all theme and plugin texts via PO file in WordPress. Here is a video tutorial that should help you translate your website texts with a Loco Translate plugin https://www.youtube.com/watch?v=D3NsDdMzsls&list=PLMw6W4rAaOgKKv0oexGHzpWBg1imvrval&index=3

    As for the shipping title, edit it in Theme Settings -> Product page.

    Regards

    #46544

    gilesp
    Participant

    Thanks – I’ll give this a go.

    #46559

    You are always welcome. If you have any further questions, please feel free to contact.

    Best Regards,

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