Home Forums WoodMart support forum Range slider and search

Range slider and search

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #686225

    komolov-nv
    Participant

    Hello
    1. Range slider
    I need additional product filters by attributes in the form of a range slider, since they are numeric. The theme has a range slider for the price, can it be somehow converted into a range slider by attributes?
    2. Search
    Is it possible to change the category search so that only the main categories are shown? I don’t need subcategories, there are a lot of them. Is there an option in the theme to select categories for search?

    #686260

    Hello,

    01. Unfortunately, there is no such option by default. You need to find a third-party plugin to achieve more functionality that best suits you.

    02. Unfortunately, There is no option in Theme settings available to hide subcategories from the search bar drop down. To hide the category from the search dropdown you need to add the following custom CSS code in the Global Custom CSS area under Theme Settings >> Custom CSS.

    .wd-dropdown-search-cat .cat-item-2336 { 
        display: none !important; 
    }

    You can replace the ID 2336 by your desired once that you want to remove it from the search bar.

    If you want to remove all the sub-categories use this css code:

    .wd-dropdown-search-cat .children li a { 
        display: none !important;
    }

    Best Regards,

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