Home Forums Basel support forum Make horizontal filter area expanded by default

Make horizontal filter area expanded by default

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #5541

    Human
    Participant

    Hi,

    How can I make horizontal filter area expanded by default?

    I mean this:

    #5542

    Artem Temos
    Keymaster

    Hello,

    Thank you for your question.

    You can expand filters area by default by adding this code snippet to the Custom CSS area in Theme Settings

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

    Regards

    #5543

    Artem Temos
    Keymaster

    In this situation we also suggest you to hide “Filters” button with this snippet

    .basel-filter-buttons {
        display: none!important;
    }

    Regards

    #5544

    Human
    Participant

    Thank you.

    How can I have drop down list-box for sorting in this filter area or above it?

    #5545

    Artem Temos
    Keymaster

    Try to add this snippet to the functions.php file in your child theme

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

    Regards

    #5550

    Human
    Participant

    There is another problem with my horizontal filter area and that is unwanted price filter in it despite of empty widget. here is my widget area screenshot:

    Please check my site URL in private content.

    #5556

    Artem Temos
    Keymaster

    You remove it by adding this snippet to the functions.php also

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

    Regards

Tagged: 

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