MyBB Community Forums

Full Version: Forum Warning System for MyBB 1.2
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5
I'm unable to download the plugin from the site. I get an archive of 93 kb but there's nothing inside.
is any way to display warning level to its owner? i mean every user should see its warning level.
Isn't that by default? If not, go to board settings > change > FWS and change accordingly.
destroyer Wrote:Isn't that by default? If not, go to board settings > change > FWS and change accordingly.

unfortunately there is only option to display warning level for all members, not exactly one member.
So this mod still works for 1.2.9??
Yes it does.
Found a problem today..

You can only expire the first top warning because you have </form> tag in the wrong place.

In admin/fws.php around line 453..

move the endform(); line past the }

This :

		echo '</tr>'."\n";
    endform();
	}

	endtable();

becomes this:
		echo '</tr>'."\n";
	}
    endform();
	endtable();
whats a group ID?
how do i make the warn button visible to all registered users?
MadamZuZu Wrote:whats a group ID?
how do i make the warn button visible to all registered users?

Usergroup Identification, the number of the usergroup.

Ah! That's a bad idea! What if a user is abusing it to get a user banned? uuh..
we'r a friendly forum Smile

how do i find out a group ID of a certain group?
let's say i'll make one just for the *special* members Smile
Pages: 1 2 3 4 5