MyBB Community Forums

Full Version: Redirect banned users to a certain page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to redircet banned users on my forum to this page when they are banned

<snip>

how would i do this ?
I've removed your link as that really isn't safe for work, especially with the meta refresh...

You'd either need to make a core edit or create a plugin which checks if the user is banned, then perform a redirect() to that page.

if($mybb->user['usergroup'] == 7)
{
    redirect('http://site.com/banned');
    exit(1);
}