How To Change The Ordering Of The 'Last Post', 'Threads', And 'Posts' columns

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jose Amaral Rego
    Senior Member
    • Feb 2005
    • 11058
    • 1.1.x

    How To Change The Ordering Of The 'Last Post', 'Threads', And 'Posts' columns

    This styling tutorial was taken from Jake Bunce vBulletin 3.0 Quick Tips and Customizations
    No changes to editing.

    Admin CP -> Styles & Templates -> Style Manager -> « » -> Forum Home Templates ->
    • FORUMDISPLAY
    • FORUMHOME

    Find this code and swap the different colored lines of code so they are in the order you want:

    Code:
    	<tr align="center">
    	  <td class="thead">&nbsp;</td>
    	  <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
    	  [COLOR="Red"]<td class="thead" width="175">$vbphrase[last_post]</td>[/COLOR]
    	  [COLOR="Green"]<td class="thead">$vbphrase[threads]</td>[/COLOR]
    	  [COLOR="Blue"]<td class="thead">$vbphrase[posts]</td>[/COLOR]
    	  <if condition="$vboptions['showmoderatorcolumn']">
    	  <td class="thead">$vbphrase[moderator]</td>
    	  </if>
    	</tr>
    Then edit templates:
    • forumhome_forumbit_level1_post
    • forumhome_forumbit_level2_post

    Do the same swap in the same order on this code and remember to keep alternating background colors alt2 - alt1 as seen here asis:

    Code:
    		[COLOR="Red"]<td class="alt2" nowrap="nowrap">$forum[lastpostinfo]</td>[/COLOR]
    		[COLOR="Green"]<td class="alt1">$forum[threadcount]</td>[/COLOR]
    		[COLOR="Blue"]<td class="alt2">$forum[replycount]</td>[/COLOR]
    		<if condition="$vboptions['showmoderatorcolumn']">
    		<td class="alt1"><div class="smallfont">$forum[moderators]
    To remove 'Last Post', 'Threads', And 'Posts' columns edit templates.
    Admin CP -> Styles & Templates -> Style Manager -> « » -> Forum Home Templates ->
    • FORUMDISPLAY
    • FORUMHOME

    # to remove 'Last Post' delete the corresponding colour/color
    # to remove 'Threads' delete the corresponding colour/color
    # to remove 'Posts' delete the corresponding colour/color
    Code:
    	<tr align="center">
    	  <td class="thead">&nbsp;</td>
    	  <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
    	  [COLOR="Red"]<td class="thead" width="175">$vbphrase[last_post]</td>[/COLOR]
    	  [COLOR="Green"]<td class="thead">$vbphrase[threads]</td>[/COLOR]
    	  [COLOR="Blue"]<td class="thead">$vbphrase[posts]</td>[/COLOR]
    	  <if condition="$vboptions['showmoderatorcolumn']">
    	  <td class="thead">$vbphrase[moderator]</td>
    	  </if>
    	</tr>
    Then edit templates:
    • forumhome_forumbit_level1_post
    • forumhome_forumbit_level2_post

    # to remove 'Last Post' delete the corresponding colour/color
    # to remove 'Threads' delete the corresponding colour/color
    # to remove 'Posts' delete the corresponding colour/color
    Remember to fix alternating background colors alt2 - alt1:

    Code:
    		[COLOR="Red"]<td class="alt2" nowrap="nowrap">$forum[lastpostinfo]</td>[/COLOR]
    		[COLOR="Green"]<td class="alt1">$forum[threadcount]</td>[/COLOR]
    		[COLOR="Blue"]<td class="alt2">$forum[replycount]</td>[/COLOR]
    		<if condition="$vboptions['showmoderatorcolumn']">
    		<td class="alt1"><div class="smallfont">$forum[moderators]
    Swap Forum home
    Click image for larger version

Name:	columnswapfh.jpg
Views:	1
Size:	10.1 KB
ID:	3703609
    Swap Forum display
    Click image for larger version

Name:	columnswapfd.jpg
Views:	1
Size:	8.3 KB
ID:	3703610

    Delete Forum home column
    Click image for larger version

Name:	removecolumnfh.jpg
Views:	1
Size:	9.1 KB
ID:	3703617
    Delete Forum display column
    Click image for larger version

Name:	removecolumnfd.jpg
Views:	1
Size:	8.0 KB
ID:	3703618
    Last edited by Jose Amaral Rego; Thu 3 May '07, 12:41pm. Reason: Added more info & also change Thread Topic Information
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Working...