Quote:
Originally Posted by hpidriver
Marked as installed! great mod, extremely useful thank you.
I have a question - I have a forum that is being used a master forum. Where would I edit to have the sub-forums be displayed above the threads (so the opposite as in your first example screenshot)
tia
|
To do that best way would be to not use the auto template edit on the threadbit and do the manual edit instead- per the instructions:
Code:
Manual Template Edit for vBulletin 3.x series:
In your Admin CP -> Styles & Templates -> Style Manager
Choose your style(s) and go to Edit Templates
Scroll down to Threadbit Templates -> threadbit
In the threadbit template find the code:
<if condition="$show['guestuser']">
$thread[postusername]
And directly after it add the following code:
For your request instead put this code directly BEFORE the above:
<if condition="$thread[forumid] != $foruminfo[forumid]"> - $thread[forumtitle]</if>
Also find the code:
<span style="cursor:pointer" onclick="window.open('member.php?$session[sessionurl]u=$thread[postuserid]', '_self')">$thread[postusername]</span>
And REPLACE it with:
<span style="cursor:pointer" onclick="window.open('member.php?$session[sessionurl]u=$thread[postuserid]', '_self')">$thread[postusername]<if condition="$thread[forumid] != $foruminfo[forumid]"> - $thread[forumtitle]</if></span>
changes in
red.