Home Forums WoodMart support forum Unable to see the Product settings tabs on the Sigle Product Layout at frontend

Unable to see the Product settings tabs on the Sigle Product Layout at frontend

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #661602

    royparimal2
    Participant

    We are unable to see the product settings tab at the single layout product page for both frontend and backend. Also, we cannot see the Product Log description section at the backend post installing this theme. We need the solution for:

    1. To show these tabs in the product layout page in the frontend
    2. Product long description section should be visible on the backend and the frontend.

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

    Hung Pham
    Keymaster

    Hi royparimal2,

    Thanks for reaching to us.

    To assist you in the best possible manner, I kindly ask that you please provide me temporary wp-admin info (wp-admin URL, username, password) to the Private Content area, this will allow me to thoroughly investigate and address your concerns more efficiently.

    Kind Regards,

    #661641

    royparimal2
    Participant

    Can I get your email address so that i can directly mail the login credentials to you.

    #661675

    Hung Pham
    Keymaster

    Hi royparimal2,

    You can use any email, it doesn’t matter.

    Regards,

    #661698

    royparimal2
    Participant

    Please resolve this Tabs issue. i want the screenshot tabs content to show on single product page.

    • This reply was modified 1 day, 13 hours ago by Hung Pham.
    #661743

    Hung Pham
    Keymaster

    Hi royparimal2,

    Thanks for details.

    You are using a Custom Single Product layout, which is built with WoodMart WooCommerce builderNavigate to Layouts > edit the layout > and add Product tabs widget.

    Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/

    Regards,

    #661769

    royparimal2
    Participant

    Okey, I understand that and now the tab is showing in the product single layout. Now I am sharing you the Images of 2 Segment 1 Is from Theme setting>single product>tabs page (Segment 1) and second one is from Products> Edit product> tabs page (Segment 2). The think is If I show product tabs in accordian form, the segment 1 tabs are showing above segment 2 tabs. Firstly can I rearrange them if not, I want to know how to set a Discription tab so that If i put text in Product long discription form, The discription tab self inherit or take from there for every individual product. I want to show my Discription tab above allthese tabs.

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

    Hung Pham
    Keymaster

    Hi royparimal2,

    Try to use the code below instead of yours. Define the code in the functions.php file in your child theme.

    /**
     * Reorder product data tabs
     */
    add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
    function woo_reorder_tabs( $tabs ) {
    
    	$tabs['reviews']['priority'] = 5;			// Reviews first
    	$tabs['description']['priority'] = 10;			// Description second
    	$tabs['additional_information']['priority'] = 15;	// Additional information third
    
    	// Custom Tabs are from Product Settings
    	// $tabs['wd_custom_tab']['priority'] = 2; 
    	// $tabs['wd_custom_tab_2']['priority'] = 3;
    
    	// Additional Tabs are from Theme Settings
    	// $tabs['wd_additional_tab']['priority'] = 4;
    	// $tabs['wd_additional_tab_2']['priority'] = 5;
    
    	return $tabs;
    }

    Kind Regards,
    Hung PD

    #662211

    royparimal2
    Participant

    Tell me where to put this in Function .php and also I want it in this order – Product tab 1, Product Tab 2, Additional Information, Review. Basically i want Product tab First.

    #662212

    royparimal2
    Participant

    This is my Function.php code below in the private area. tell me step by step where to put this code in the below php cpde.

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