MyBB Community Forums

Full Version: HTML in post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I get HTML working in a post by an admin?
By default this is a per forum permission.
However do this
open ./inc/functions_post.php
find
if(!$postcounter)
above it add
	if($post['usergroup'] == 4)
	{
		$parser_options['allow_html'] = "yes";
	}
I have a plugin where you can set users to be allowed to post HTML
http://dennistt.net/forum/showthread.php?tid=438
LOL i never been accross this plugin.
It's relatively new, so you wouldn't have seen it that long.