XF 1.2 sectionHeader in thread_list...trying to remove

  • conversation_list
  • discussion_list.css
  • find_new_posts
  • report_list
  • report_list_closed
  • report_search
  • thread_list
  • watch_threads
  • watch_threads_all

All the above templates have sectionHeaders listed

The one you're looking for in thread_list can be found here

PHP:
  <dl class="sectionHeaders">
     <dt class="posterAvatar"><a><span>{xen:phrase sort_by}:</span></a></dt>
     <dd class="main">
       <a href="{xen:link forums, $forum, '_params={$orderParams.title}'}" class="title"><span>{xen:phrase title}{xen:helper sortArrow, $order, $orderDirection, title}</span></a>
       <a href="{xen:link forums, $forum, '_params={$orderParams.post_date}'}" class="postDate"><span>{xen:phrase start_date}{xen:helper sortArrow, $order, $orderDirection, post_date}</span></a>
     </dd>
     <dd class="stats">
       <a href="{xen:link forums, $forum, '_params={$orderParams.reply_count}'}" class="major"><span>{xen:phrase replies}{xen:helper sortArrow, $order, $orderDirection, reply_count}</span></a>
       <a href="{xen:link forums, $forum, '_params={$orderParams.view_count}'}" class="minor"><span>{xen:phrase views}{xen:helper sortArrow, $order, $orderDirection, view_count}</span></a>
     </dd>
     <dd class="lastPost"><a href="{xen:link forums, $forum, '_params={$orderParams.last_post_date}'}"><span>{xen:phrase last_message}{xen:helper sortArrow, $order, $orderDirection, last_post_date}</span></a></dd>
   </dl>

Why do you want / need to remove it is my question (I'm curious)
 
Top Bottom