MyBB Community Forums

Full Version: Custom profile fields with BB or HTML support
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello...
Ive looked for this for a couple of days now so ill just ask.
Does anyone know how to enable html or bb code for the custom profile fields?
I want to add LinkedIn , Twitter , Facebook Profile fields with a clickable url.
But since the custom fields dont allow such thing i cant. Dodgy

For asfar as i know there is no working plugin for myBB 1.6xxx atm.

So if someone know how to allow the code in the fields please let me know.Angel

thanks
(2011-03-22, 04:06 PM)Yaldaram Wrote: [ -> ]http://mods.mybb.com/view/bbcode-in-cust...ile-fields

Thanks but that plugin is not supported on myBB 1.6xxx (wont let me install)

So still need a way lol Big Grin

Try to change its compatibility;
So in this guide you'll see, how to make 1.4 plugins compatible with 1.6.

Open plugin file and find;
"compatibility" => "14*"

and change it to;
"compatibility" => "16*"

Save the plugin file, and wow you are done! Toungue

That's the way you can make your plugins working with the latest MyBB release Smile
(2011-03-22, 04:18 PM)Yaldaram Wrote: [ -> ]Try to change its compatibility;
So in this guide you'll see, how to make 1.4 plugins compatible with 1.6.

Open plugin file and find;
"compatibility" => "14*"

and change it to;
"compatibility" => "16*"

Save the plugin file, and wow you are done! Toungue

That's the way you can make your plugins working with the latest MyBB release Smile

Nice one that worked...

but how would i get a link clickable in a custom profile field (like website) where u dont have to put in the bb or html (but just the link) and it makes it clickable.

Some users on the forums wont know what to do Wink

ill might have to edit some templates (ill try to figure it out)
You may wrap the profile field variable in a <a href> tag, like this;
<a href="{$post['fidX']}">{$post['fidX']}</a>

Where X is the Profile Field ID.