Home › Forums › WoodMart support forum › Collapsible product filter in the archive page
Collapsible product filter in the archive page
- This topic has 9 replies, 2 voices, and was last updated 2 months, 4 weeks ago by Hung Pham.
-
AuthorPosts
-
September 9, 2024 at 8:42 am #596043
webdevit3ParticipantHi, how can I make my product archive page filters collapsible like the attached image?
Attachments:
You must be logged in to view attached files.September 9, 2024 at 12:20 pm #596123
Hung PhamKeymasterHi webdevit3,
Thanks for reaching to us.
Go to Theme Settings > Product Archive > Widgets > choose the enable for
Shop sidebar widgets collapse
option. https://prnt.sc/qZH04LwJKTXBRegards,
September 9, 2024 at 4:03 pm #596225
webdevit3ParticipantThank you so much. It is a catalog shop. I have turned on catalog mode. Can you tell me how can I put there a Enquiry button and a form?
September 9, 2024 at 4:38 pm #596243
webdevit3ParticipantAlso I need to move the single product tabs at the right side like the attached image.
Attachments:
You must be logged in to view attached files.September 11, 2024 at 6:51 am #596571
Hung PhamKeymasterHi webdevit3,
First of all, I’m really sorry have taken long time to reply you.
I kindly recommend you to build Custom Product layouts, which is built with WoodMart WooCommerce builder, then and create new WooCommerce layouts and place your specific contents that suits your requirements and simply place a Enquiry button as you want.
Further, you can read more about the Layout Builder here: https://xtemos.com/docs-topic/woodmart-woocommerce-layout-builder/
Regards,
September 13, 2024 at 9:38 pm #597374
webdevit3ParticipantThank you so much. I have created a custom product tab “Feature”. How can I bring it to the top of the other tabs and If I want to hide any tab, how can I do it?
Attachments:
You must be logged in to view attached files.September 14, 2024 at 1:32 pm #597461
Hung PhamKeymasterHi webdevit3,
The code below will help you to reorder the tabs. Please try to add the code below 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'] = 33; // Reviews first $tabs['description']['priority'] = 4; // Description second $tabs['additional_information']['priority'] = 5; // Additional information third // Additional Tabs are from Theme Settings $tabs['wd_additional_tab']['priority'] = 1; $tabs['wd_additional_tab_2']['priority'] = 2; return $tabs; }
As for the removing tabs, check this documentation for help: https://woocommerce.com/document/editing-product-data-tabs/
Kind Regards
September 14, 2024 at 5:50 pm #597495
webdevit3ParticipantThank you so much. I really appreciate it. I have another question. I have some attributes such as Papers, Includes Box,Bezel Material,Case Dimension (mm),Warranty,Dial etc .I want to show those information in the Features tab dynamically. How can I do this? Have any detail documentation?
September 16, 2024 at 6:42 am #597583
webdevit3ParticipantIt’s almost 2 days, no reply found.
September 16, 2024 at 8:00 am #597592
Hung PhamKeymasterHi webdevit3,
First of all, I’m really sorry have taken long time to reply you due to the weekend.
WoodMart theme does not have the option to control that.
For specialized assistance and potential solutions, I kindly suggest that you reach out directly to the WooCommerce plugin’s support team https://wordpress.org/support/plugin/woocommerce/, who are better equipped to provide you with the guidance you requires or You need to find a third party plugin to achieve more functionality that best suits you.
If you have any questions please feel free to contact us.
Regards,
-
AuthorPosts
- You must be logged in to create new topics. Login / Register