tomnjerry74
Member
In forum_view, I'm trying to remove the drop-down menu aspect of the thread filters and instead display the contents of the drop-down at all times.
The code for the filter menu is referenced in the "forum_view" template, but I'm not sure how to make it not a drop-down.
The code for the filter menu is referenced in the "forum_view" template, but I'm not sure how to make it not a drop-down.
HTML:
<a class="filterBar-menuTrigger" data-xf-click="menu" role="button" tabindex="0" aria-expanded="false" aria-haspopup="true">{{ phrase('filters') }}</a>
<div class="menu menu--wide" data-menu="menu" aria-hidden="true"
data-href="{{ link('forums/filters', $forum, $filters) }}"
data-load-target=".js-filterMenuBody">
<div class="menu-content">
<h4 class="menu-header">{{ phrase('show_only:') }}</h4>
<div class="js-filterMenuBody">
<div class="menu-row">{{ phrase('loading...') }}</div>
</div>
</div>
</div>