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
- This topic has 9 replies, 2 voices, and was last updated 1 hour, 29 minutes ago by
royparimal2.
-
AuthorPosts
-
May 19, 2025 at 1:10 pm #661602
royparimal2ParticipantWe 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.May 19, 2025 at 2:12 pm #661621
Hung PhamKeymasterHi 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,
May 19, 2025 at 3:01 pm #661641
royparimal2ParticipantCan I get your email address so that i can directly mail the login credentials to you.
May 19, 2025 at 5:44 pm #661675
Hung PhamKeymasterHi royparimal2,
You can use any email, it doesn’t matter.
Regards,
May 19, 2025 at 7:06 pm #661698
royparimal2ParticipantPlease 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.
May 20, 2025 at 2:58 am #661743
Hung PhamKeymasterHi 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,
May 20, 2025 at 9:16 am #661769
royparimal2ParticipantOkey, 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.May 21, 2025 at 4:46 am #662013
Hung PhamKeymasterHi 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 PDMay 21, 2025 at 2:30 pm #662211
royparimal2ParticipantTell 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.
May 21, 2025 at 2:33 pm #662212
royparimal2ParticipantThis 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.
-
This reply was modified 1 day, 13 hours ago by
-
AuthorPosts
- You must be logged in to create new topics. Login / Register