PDA

View Full Version : Use BBCode in usertitle


Dave Strider
08-14-2015, 04:41 AM
What I would like to do is allow specific usergroups to be able to use BBCode to format their usertitle. Is there a way to do this via plugin?

Andr? Noberto
09-01-2015, 12:06 AM
I guess you could try something like this

require_once(DIR . '/includes/class_bbcode.php');
$newUserTitle = $post['usertitle'];

//Use [c] for , it will save some characters from the usertitle limit.
$newUserTitle = preg_replace('#\[c(.*?)\](.*?)\[\/c\]#','[color\1]\2',$newUserTitle);

$bbcode_parserx = new vB_BbCodeParser($vbulletin, fetch_tag_list());
$newUserTitle = $bbcode_parserx->do_parse($newUserTitle , true, false, true , false, false, false);

$post['usertitle'] = $newUserTitle;

You could use hooks like:
postbit_display_complete
profile_complete
etc...

The hook will change according to the location you want to enable it.

I'm not sure if this is going to work, as I haven't tried but please post your results here after testing.

Dave Strider
09-21-2015, 08:37 PM
Sorry for the late reply, been a tab busy these days. As for the code, it does work in threads, however, it doesn't work in profiles. In profiles it will just simply display the code that was entered in the User Control Panel.

Andr? Noberto
09-24-2015, 03:40 PM
Have you created a plugin for each hook?

Dave Strider
09-25-2015, 10:29 PM
Yeah, I tried that, and sadly no luck. I even tried replacing $post['usertitle'] with $prepared['usertitle'] since that's what used to call the usertitle in the MEMBERINFO template.

Andr? Noberto
09-26-2015, 07:00 PM
Try adding a new plugin with same code with the hook location: member_complete and fetch_userinfo.

It's supposed to work after this.
Try it.