PDA

View Full Version : [HowTo] [3.0.0] Place and optimize the "Mark Forums Read - View Forum Leaders" bar.


Floris
04-11-2004, 10:00 PM
[HowTo] [3.0.0] Place and optimize the "Mark Forums Read - View Forum Leaders" bar.

Title: Place and optimize the "Mark Forums Read - View Forum Leaders" bar.
Version: 1.0.0
Category: Template Modification for vBulletin version 3.0.0 (Gold)
Author: Floris (http://www.vBulletin.nl/ (http://www.vbulletin.nl/))
Description: This modification removes the "Mark Forums Read - View Forum Leaders" bar from below the forum (where it behaves as footer) and places it as footer to the "What is going on" box. It will get optimized and will include a small tweak: When you are not logged in it will display the 'register' text and once logged in it will display 'Log out <username>'. Finally it will cleanup the leftover 'Log out' which hovers on the right bottom of the forum icons.

Installation instructions

Goto the Admin Control Panel > Styles & Templates > Style Manager and from the dropdown box select "Edit Templates" to expand the style you want to modify.

Select the "Forum Home Templates" and expand the group.

Select the template "FORUMHOME".

Find the following code:

<tbody>
<tr>
<td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong>
<a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a>
&nbsp; &nbsp;
<a href="showgroups.php?$session[sessionurl]">$vbphrase[view_forum_leaders]</a>
</strong></div></td>
</tr>
</tbody>


Delete it from the template.

Now also in the "FORUMHOME" template find the following code:

<if condition="!$show['guest']">
<!-- member logout -->
<td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout" onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
<!-- end member logout -->
</if>


Delete it from the template.

Still in the "FORUMHOME" template find the following code:

</table>
<br />
<!-- end what's going on box -->


Before that, on a new line, add the following code:

<tbody>
<tr>
<td class="thead" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong>
<a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a>
&nbsp;|&nbsp;
<a href="showgroups.php?$session[sessionurl]">$vbphrase[view_forum_leaders]</a>
<if condition="!$show['guest']">&nbsp;|&nbsp;
<a href="login.php?$session[sessionurl]do=logout" onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a>
<else /><if condition="$show['registerbutton']">&nbsp;|&nbsp; <a href="register.php?$session[sessionurl]">$vbphrase[register]</a></if></if>
</strong></div></td>
</tr>
</tbody>


Save the "FORUMHOME" template

You are done!


Don't ask for screenshots because I can't attach them for some strange reason.

Eplix.Studio
04-12-2004, 03:23 PM
Thanks floris, I was going to request this but forgot thanks. Ill install in a bit.

Floris
04-12-2004, 06:18 PM
No problem, thank you and I hope it works for you.

Tony G
04-13-2004, 12:52 AM
I much prefer it this way, nice mod and thanks for sharing floris. :)

Floris
04-13-2004, 07:25 AM
Nice to hear from you :)

Sharpsh00ter
04-17-2004, 06:51 AM
great modification. thx ;)

cu
s.

btekcan
04-17-2004, 10:53 AM
An error occurred while attempting to log you out. Click here to log out.

I received this message 1.st,why ? My forum is VB3.0.1

Thanks

btekcan
04-18-2004, 08:40 PM
Any suggestion ?

NYI Fan
12-05-2004, 08:41 PM
Thank you! This is great!

imported_chuanse
12-09-2004, 02:21 PM
Nice one, allthough there is a piece of code missing ;)
This one will log you out normally...

<a href="login.php?$session[sessionurl]do=logout&amp;u=$bbuserinfo[userid]" onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a>

Surtain23
12-18-2004, 08:42 AM
An error occurred while attempting to log you out. Click here to log out.

I received this message 1.st,why ? My forum is VB3.0.1

Thanks
I believe that is caused by having blank spaces at the end of a file... I might be wrong though.

Pion
03-19-2005, 08:27 PM
Does this work for 3.0.7??

stan111
01-26-2007, 02:14 AM
how come my log out does not go along with those two?

Mischievious
07-18-2007, 11:22 PM
Here's a revised version of the code that goes below the 'What's Going On Box' that I fixed for the logout error, which works perfectly with 3.6.7!

<tbody>
<tr>
<td class="thead" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong>
<a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a>
&nbsp;|&nbsp;
<a href="showgroups.php?$session[sessionurl]">$vbphrase[view_forum_leaders]</a>
<if condition="!$show['guest']">&nbsp;|&nbsp;
<!-- member logout -->
<a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
<!-- end member logout -->
</if>
</tr>
</tbody>