MyBB Community Forums

Full Version: Global Rules
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have many forums and I want to set a global rule for all of them. Is there any 1 place I can do this?

I do not want to go to each forum to type the same rule.
Use the Global Announcements feature:
ModCP -> Announcements -> Add Global Announcement
(2010-09-30, 07:43 AM)Kyuubi Wrote: [ -> ]Use the Global Announcements feature:
ModCP -> Announcements -> Add Global Announcement

Thanks, but it does not do show the same as rules. I will add rules to all the forums.
You will have to do that manually I think or you'll need a plugin.

A different option for you could be to make a template edit (forumdisplay is the template you want I guess) and insert the rules there.
You could run a SQL query in phpMyAdmin to set the same rules for every forum:
UPDATE `mybb_forums` SET `rules` = 'X';
UPDATE `mybb_forums` SET `rulestitle` = 'Y';
UPDATE `mybb_forums` SET `rulestype` = '1';

Replace X with the actual rules and Y with the actual title.