I have hundreds of tags in my TW. A big list is displayed when I add new tag.
Is there a way to limit to a certain number of tags which are displayed (e.g. 8)?
I have hundreds of tags in my TW. A big list is displayed when I add new tag.
Is there a way to limit to a certain number of tags which are displayed (e.g. 8)?
I find the answer by myself
edit $:/core/macros/tag-picker
in this line:
nonSystemTagsFilter="[tags[]!is[system]search:title<userInput>sort[]]" systemTagsFilter="[tags[]is[system]search:title<userInput>sort[]]"
to
nonSystemTagsFilter="[tags[]!is[system]search:title<userInput>sort[]limit[2]]" systemTagsFilter="[tags[]is[system]search:title<userInput>sort[]limit[2]]">
Another way to address this would be to make the dropdown contents scrollable with a fixed max-height, by changing this line:
<div class="tc-block-dropdown tc-block-tags-dropdown">
to this:
<div class="tc-block-dropdown tc-block-tags-dropdown" style="max-height:10em;overflow:auto;">
Another way is to use Auto Complete plugin from @Maurycy .
Here you can create category tags or any set of tags to just see them!