Equivalent Template to ForumHome

Michael

Active member
Does anyone know what the XenForo equivalent is to the vbulletin forumhome template? I found the page container, but isnt that sitewide? I am wanting to use some code to show on the forumhome equivalent in xF, any ideas of the template name or how to achieve this?

Thank you!
 
Neat trick. View the source code of any xF forum page. Look for the content div at the top of the body. The class of that div tells you the name of the root template for that page. On the forumhome page you can see this content div:

Code:
<div id="content" class="forum_list">

The root template for the forumhome is forum_list.
 
Top Bottom