The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Moving Posts, Threads, Last Post Around?
Image below shows what I am trying to do, as you can see Threads, Posts and Last Post are in the correct place, and the table width is set correctly, the only thing thats not working is the info under the sections to be in the right category.
For example, the number of posts should be under post, number of threads should be under threads, and the last post should be under last post. Unfortunately, last post is under threads, threads are under posts and posts are under last post. |
#2
|
||||
|
||||
In forumdisplay template just move the "Threads" phrase and "Last Post" phrase...
In the default template the code looks like this: Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <thead> <tr align="center"> <td class="thead"> </td> <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td> <td class="thead">$vbphrase[last_post]</td> <td class="thead">$vbphrase[threads]</td> <td class="thead">$vbphrase[posts]</td> <if condition="$vboptions[showmoderatorcolumn]"> <td class="thead">$vbphrase[moderator]</td> </if> </tr> </thead> $forumbits </table> |
#3
|
|||
|
|||
I tried doing what you said, but it didn't change anything, they are still in the same place as before.
--------------- Added [DATE]1283299500[/DATE] at [TIME]1283299500[/TIME] --------------- Also my mistake in the picture, the last thread should be under last post, not posts. |
#4
|
||||
|
||||
What page (URL) are you viewing in that screen shot? Is it http://yourdomaincom/forums/forumdisplay.php ?
|
#5
|
|||
|
|||
That screenshot is on index.php, I assumed I would need to edit the template bit in forumhome, but none of my changes worked.
Also I do not have a forumdisplay.php. |
#6
|
||||
|
||||
If it's index then yes it's forumhome not forumdisplay template...
but you should also have a forumdisplay.php - what version of VB do you have? |
#7
|
|||
|
|||
I have the latest, 3.8.6.
See for yourself. Code:
http://forums.limitedition.org/forumdisplay.php |
#8
|
||||
|
||||
|
#9
|
|||
|
|||
Yeah, that works, so any idea what changes need to be made?
|
#10
|
||||
|
||||
Well it's pretty much the same instructions as before- in forumhome template just swap the last_post and threads text:
Code:
<!-- main --> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <thead> <tr align="center"> <td class="thead"> </td> <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td> <td class="thead">$vbphrase[last_post]</td> <td class="thead">$vbphrase[threads]</td> <td class="thead">$vbphrase[posts]</td> <if condition="$vboptions['showmoderatorcolumn']"> <td class="thead">$vbphrase[moderator]</td> </if> </tr> </thead> $forumbits <tbody> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|