Filter Configuration Options
- Applies to:
- All MindTouch Versions
- Role required:
- N/A
See example CSS below to hide Custom Classifications or the Attachments toggle. Follow CSS Guidelines to add the CSS to the appropriate CSS field in the Control Panel.
Intelligent Search (announced 2020-02-20, expected to release 2020-03-02 - 2020-03-06)
Expert is updating the search experience with an improved Intelligent Search. The current version of Expert will receive an updated search algorithm and user interface. Previous version of Expert (MT4) and search integrations will receive the updated algorithm without any user interface changes.
Classification Filter - previous search experience
Click the ellipses icon below the Category and Guide Filter to expand or collapse the Classification Filter.
- Filter search results by default Classifications (Page Type) or Custom Classifications.
- Pro members see all Classifications and Community Members or anonymous visitors only see Custom Classifications.
Classification Filter - new search experience
The updated search user interface shows Location, Classification, and Attachments (toggle) in new left filter menu.
Example CSS to hide Custom Classifications
Replace [classification-prefix], without brackets, with the exact prefix for the Custom Classification you want to hide. Find the Classification prefix by navigating to Site Tools > Control Panel > System Settings > Classifications and copy the text in parentheses next to the Classification label.
//HIDE CUSTOM CLASSIFICATIONS FROM SEARCH FILTERS .mt-search-filters-classification-[classification-prefix], .mt-search-filters-classification-[classification-prefix], { display: none; }
Example CSS to hide Attachment toggle
//HIDE ATTACHMENT TOGGLE FROM SEARCH FILTERS .mt-search-filters-option-attachments { display: none; }