MyBB Community Forums

Full Version: Default Posting Font/Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm looking for a mod that will allow users to set the default formatting for their posts in their UserCP.
I'm sure someone likes this idea...
i Like this idea.
I've looked into something along these lines.
However it was more to change the colour of the admin's posts.
Unfortunately I can't find the right variables and hooks to use for a plugin.

If someone could help me with this it would be appreciated.
do a plugin hook in "parse_message"
And the hook function should be a bit like this:
function whatever($message){
$post['message'] = "<font color=\"".$color."\">".$message."</font>";
return $message;
}
If you want users to set their own color, you can add a custom profile field. And then code the plugin that $color is replaced by that profile field.

Sorry if you don't understand everything, but i'm in a hurry