XF 2.3 Hide sorting

dutchbb

Well-known member
Is it possible to hide sorting for guests in following?

Suggestion forums

Question forums

Question threads (sort by date and votes)
https://xenforo.com/community/threads/how-to-add-custom-user-field-info-below-avatar.199782/
 
Is it possible to hide sorting for guests in following?
With CSS:
Suggestion forums
Rich (BB code):
[data-logged-in="false"] [data-template="forum_view_type_suggestion"] .block-tabHeader.tabs .hScroller {
    display: none;
}
Question forums
Rich (BB code):
[data-logged-in="false"] [data-template="forum_view_type_question"] .block-tabHeader.tabs .hScroller {
    display: none;
}
Question threads (sort by date and votes)
Rich (BB code):
[data-logged-in="false"] [data-template="thread_view_type_question"] .block-outer-opposite .tabs {
    display: none;
}
You could probably also do it with conditional statements in templates too.
 

Similar threads

Back
Top Bottom