Home Forums WoodMart support forum Collapsible product filter in the archive page

Collapsible product filter in the archive page

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

    webdevit3
    Participant

    Hi, how can I make my product archive page filters collapsible like the attached image?

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

    Hung Pham
    Keymaster

    Hi 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/qZH04LwJKTXB

    Regards,

    #596225

    webdevit3
    Participant

    Thank 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?

    #596243

    webdevit3
    Participant

    Also 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.
    #596571

    Hung Pham
    Keymaster

    Hi 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,

    #597374

    webdevit3
    Participant

    Thank 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.
    #597461

    Hung Pham
    Keymaster

    Hi 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

    #597495

    webdevit3
    Participant

    Thank 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?

    #597583

    webdevit3
    Participant

    It’s almost 2 days, no reply found.

    #597592

    Hung Pham
    Keymaster

    Hi 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,

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