XF 1.5 Thread Display Options How Do I Remove?

gaetano

New member
Hi, i was wondering how i would remove Thread Display Options, take it out of eye site so no one see it/remove
Preveiw.webp
Any help would be greatly appreciated :D
 
Template: thread_list

Code:
<h3 id="DiscussionListOptionsHandle" class="JsOnly"><a href="#">{xen:phrase thread_display_options}</a></h3>

Rich (BB code):
<xen:comment><h3 id="DiscussionListOptionsHandle" class="JsOnly"><a href="#">{xen:phrase thread_display_options}</a></h3></xen:comment>
 
You can also use this code in EXTRA.css template to hide it without having to edit a template.
Code:
h3#DiscussionListOptionsHandle {
    display: none;
}
 
Top Bottom