one of the BASE FIELDS that can be chosen for the filter is the CATEGORY field. is it possible to choose which sub-categories are included and excluded? or do they all have to show up?

for example i have 2 main categories and for each one i have 10 sub categories. i only want, for example, 4 specific ones to show up on the front end, rather than all 20. how is this achievable?

    Hi us4m4h

    Unfortunately, there is no setting to select specific categories like that.

    But I think you can use CSS to hide some categories in the list. Could you share the URL of the filter page and tell me the categories you want to hide?

    11 days later

    us4m4h

    You can use this custom css:

    .filter-options .filter-dropdown .chzn-container .chzn-results li:last-child {
        display: none;
    }

    ok, so if there were 10 items in the drop down then how would i hide options 5 and 6 for example?

      us4m4h

      You can replace the selector :last-child with :nth-child(n)

      For example:

      .filter-options .filter-dropdown .chzn-container .chzn-results li:nth-child(5) {
          display: none;
      }

      to hide 5th item.

      Write a Reply...
      You need to Login to view replies.