WhaLberg
01-06-2007, 10:00 PM
You want to have a page which includes the rules that must be followed by the users and moderators / admins. But they must be seperated and drop downed from the navbar link "Rules". If so, here is what you need..
You must write your own rules of users for sections, and also you must write the rules of moderators.
What you need to install?
- Upload the rules.php, modrules.php and mods.php to your home directory.
- Do not forget to change the database name, user name and password in mods.php
// ######################### SQL THINGS ############################
mysql_connect('localhost', 'username', 'password') or die("Cannot connect the database..");
mysql_select_db('databasename') or die("Cannot select the database..");
- Go to Styles & Templates -> Style Manager -> the Style that you use
- Click to Add New Template from the right top drop down menu.
- Change the title as "userrules" and copy the codes in userrules.txt .
- Click to Add New Template again.
- Change the title as "moderatorrules" and copy the codes in moderatorrules.txt.
- Click to Add New Template again.
- Change the title as "mods" and copy the code in mods.txt.
- Click to Add New Template again.
- Change the title as "supmods" and copy the code in supmods.txt.
- Go to Styles & Templates -> Style Manager -> the Style that you use
- Open the navbar template from Navbar Templates.
- Find (in navbar): <td class="vbmenu_control"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td> </if>
- After add: <td id="rules" class="vbmenu_control"><a href="$show[nojs_link]#rules">Board Rules</a> <script type="text/javascript"> vbmenu_register("rules"); </script></td>
- Find (in navbar): <!-- / user cp tools menu -->
</if>
- After add:<!-- rules menu -->
<if condition="$show['member']">
<div class="vbmenu_rulepopup" id="rules_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">Board Rules</td></tr>
<tr><td class="vbmenu_option"><a href="rules.php">User Rules</a></td></tr>
<if condition="is_member_of($bbuserinfo, array('5','6','7'))"><tr><td class="vbmenu_option"><a href="modrules.php">Moderator Rules</a></td></tr></if>
</table>
</div><else />
<div class="vbmenu_rulepopup" id="rules_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">Board Rules</td></tr>
<tr><td class="vbmenu_option"><a href="rules.php">User Rules</a></td></tr>
</table>
</div>
</if>
<!-- / rules menu -->
I hope this helps you and please don't be shy to ask any questions.
You can do anything you want to this addon. :)
Don't forget to click install.
You must write your own rules of users for sections, and also you must write the rules of moderators.
What you need to install?
- Upload the rules.php, modrules.php and mods.php to your home directory.
- Do not forget to change the database name, user name and password in mods.php
// ######################### SQL THINGS ############################
mysql_connect('localhost', 'username', 'password') or die("Cannot connect the database..");
mysql_select_db('databasename') or die("Cannot select the database..");
- Go to Styles & Templates -> Style Manager -> the Style that you use
- Click to Add New Template from the right top drop down menu.
- Change the title as "userrules" and copy the codes in userrules.txt .
- Click to Add New Template again.
- Change the title as "moderatorrules" and copy the codes in moderatorrules.txt.
- Click to Add New Template again.
- Change the title as "mods" and copy the code in mods.txt.
- Click to Add New Template again.
- Change the title as "supmods" and copy the code in supmods.txt.
- Go to Styles & Templates -> Style Manager -> the Style that you use
- Open the navbar template from Navbar Templates.
- Find (in navbar): <td class="vbmenu_control"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td> </if>
- After add: <td id="rules" class="vbmenu_control"><a href="$show[nojs_link]#rules">Board Rules</a> <script type="text/javascript"> vbmenu_register("rules"); </script></td>
- Find (in navbar): <!-- / user cp tools menu -->
</if>
- After add:<!-- rules menu -->
<if condition="$show['member']">
<div class="vbmenu_rulepopup" id="rules_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">Board Rules</td></tr>
<tr><td class="vbmenu_option"><a href="rules.php">User Rules</a></td></tr>
<if condition="is_member_of($bbuserinfo, array('5','6','7'))"><tr><td class="vbmenu_option"><a href="modrules.php">Moderator Rules</a></td></tr></if>
</table>
</div><else />
<div class="vbmenu_rulepopup" id="rules_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">Board Rules</td></tr>
<tr><td class="vbmenu_option"><a href="rules.php">User Rules</a></td></tr>
</table>
</div>
</if>
<!-- / rules menu -->
I hope this helps you and please don't be shy to ask any questions.
You can do anything you want to this addon. :)
Don't forget to click install.