Cyb - Advanced Forum Rules (v3.5.4)

Galeras

New Member
Cyb - Advanced Forum Rules (v3.5.4)

Info:
Advanced Forum Rules system for vBulletin.

Main Features:
-Rules shown on separate page (no file uploads required)
-BB codes enabled
-Options to force users to accept Forum Rules before can view forums, post, send PMs,...

Screenshots:












Installation:
1. Import XML file (as product): AdminCP > Plugin System > Manage Products > [Add/Import Product]
2. OPTIONAL (for some customized styles)
Open template "navbar" and add "$cyb_frules_link" after "vbphrase[faq]</a></td>".
3. OPTIONAL (to add 'reset acceptance status' to different place than default one)
Open template "MEMBERINFO" and add "$cyb_frules_force" wherever you wish.


To set options:
Go to: AdminCP > vBulletin Options > Cyb - Advanced Forum Rules


NOTE: You can check which users are (not) accepted Forum Rules by running db queries:
(Run queries through: AdminCP > Execute SQL Query)
List users who had accepted Rules:
SELECT * FROM `user` WHERE cfrules_read_status > 0;
List users who hadn't accepted Rules:
SELECT * FROM `user` WHERE cfrules_read_status = 0;

Live Demo: OW RLY?
 

SuCre

New Member
Please help me to put this link in the Enlighten Skin!

***EDIT***

I Have it!Is that right?

<td class="h_nav"><a href="misc.php?do=cfrules$session[sessionurl_q]">Rules</</a></td><td><img src="$stylevar[imgdir_misc]/nav_div.gif" alt="" /></td>
 

Galeras

New Member
I dont use this mod, maybe somelse, or even vbteam staff, that uses can help you better.

But this code looks wrong to me, i think it will work if you add like this:
Code:
<td class="h_nav"><a href="misc.php?do=cfrules$session[sessionurl_q]">Rules</a><img src="$stylevar[imgdir_misc]/nav_div.gif" alt="" /></td>
 

Daz

New Member
this is what it needs to say but it should be in your header template on that skin

PHP:
<td class="h_nav"><a href="misc.php?do=cfrules$session[sessionurl_q]">Rules</a></td>
		<td><img src="$stylevar[imgdir_misc]/nav_div.gif" alt="" /></td>


Search for
PHP:
<td class="h_nav"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>
				<td><img src="$stylevar[imgdir_misc]/nav_div.gif" alt="" /></td>

and add after it
 

SuCre

New Member
THX DAZ

Ich have a problem see screenshot!
Unbenannt.jpg


I Think that code was false!?
Code:
<td><img src="$stylevar[imgdir_misc]/nav_div.gif" alt="" /></td>
 

Daz

New Member
yes, all that means is two of those codes are present as all it does is add the divider
 
Top