Home Forums WoodMart support forum Filters

Filters

Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #51829

    Stanley Black
    Participant

    Hi,

    I want to display woodmart woocommerce layered widget on page.
    Does it exist shortcode to copy in WPbakery page builder?

    Kind regards

    #51850

    Hello,

    No, it is the functionality of WooCommerce available on the shop page only. WP Bakery builder does not have an element for that.

    Best Regards

    #51950

    Stanley Black
    Participant

    Thanks for your response.

    I want to change layout of category product page(place sidebar content on top page not in sidebar).

    In wich file I can do this. Can you provide me a path?

    Kind regards

    #51975

    Hello,

    You can place filters in the top of the page setting “Enable shop filters widget’s area above the products.” in Theme Settings > Shop > Shop filters

    In this case, shop filters will be on the top both shop page and category page.

    Best Regards

    #51983

    Stanley Black
    Participant

    Thank you!

    Where I can modify layout for “Enable shop filters widget’s area above the products.”?
    (path to file)

    I want to filters box always be visibile.

    Also to put SORT BY and PRICE FILTER in dropdown.

    Kind regards

    #51989

    Stanley Black
    Participant

    To be more precise, I want to filters widget’s area above the products always be open.

    Also to put SORT BY and PRICE FILTER in dropdown such as WOODMART WooCommerce Layered Nav.

    Best regards

    #52015

    Hello,

    Theme Settings allow put filter above the product. Filter is closed by default. We can make it open with custom CSS.

    As for other widgets there is no option to add them.

    Best Regards

    #52080

    Stanley Black
    Participant

    Hello,

    Can you provide me custom css to open filter above the product?

    If I want to make changes on layout filter above the product,
    is this a file path \themes\woodmart\inc\woocommerce.php

    Kind regards

    #52137

    Hello,

    Add this custom CSS to Theme Settings > Custom CSS > Desktop

    .filters-area{
        display:block!important;
    }

    As for layout filter please, provide us a screenshot of the area you would like to change so we can give you a right file to edit.

    Best Regards

    #52198

    Stanley Black
    Participant

    Hi,

    1.Custom css not working. It’s only add new blank space(capture1.png) and filters are still closed.

    2.I want to put SORT BY and PRICE FILTER in dropdown such as WOODMART WooCommerce Layered Nav
    (capture2.png).

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

    Stanley Black
    Participant

    Sorry,

    cant add two attachments.

    2.I want to put SORT BY and PRICE FILTER in dropdown such as WOODMART WooCommerce Layered Nav
    (capture2.png).

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

    Hello,

    You can configure filter in these files:
    inc/widgets/class-widget-price-filter.php
    inc/widgets/class-widget-sorging.php

    If you have any questions feel free to contact us.

    Best Regards

    #52207

    Stanley Black
    Participant

    Hi,

    Custom css not working. It’s only add new blank space(capture1.png) and filters are still closed.

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

    Hello,

    Please try this one:

    .filters-area {
    	display: block!important;
    }
    
    .filters-area .filters-inner-area {
    	opacity: 1!important;
    }
    
    div.woodmart-filter-buttons {
    	display:none;
    }

    Add this custom CSS to Theme Settings > Custom CSS > Desktop

    Sort BY and price filters will be added automatically.

    Best Regards

    #52332

    Stanley Black
    Participant

    Thanks!

    One more question. I want to remove SORT BY box and it can be remove by this code

    #WOODMART_Widget_Sorting{
    display:none;
    }

    But now I get one blank box(capture3.png).

    Kind regards

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

    Artem Temos
    Keymaster

    Add the following code snippet to the functions.php file in your child theme to remove default sorting filter

    add_filter( 'woodmart_use_custom_order_widget', '__return_false', 10 );

    #52347

    Stanley Black
    Participant

    Thank you, perfect!!!

    How to do the same thing for PRICE FILTER?

    Best regards

    #52363

    Artem Temos
    Keymaster

    Add this line also

    add_filter( 'woodmart_use_custom_price_widget', '__return_false', 10 );

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