MyBB Community Forums

Full Version: Suffix, prefix in custom profile fields.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Look to profile fields under avatar in this post: (vbulletin)

http://forum.tibia.pl/announcement.php?f=12&a=41

Look to "Imię: Yatiru" - If i click link I'll go to "http://www.tibia.com/community/?subtopic=character&name="

After "&name" has been added "Yariru" - text from Custom Profile Field.

I can make this in MyBB?



sorry for my bad english, but i think that you understand it. :neutral:
It's possible and one method was described herein.

EDIT:
In fact, i read it on the french MyBB board.

jaja Wrote:hello

tu vas dans les templates "Message Templates", "postbit"

ensuite sous "{$post['user_details']}", tu mets (par exemple) :

Trader status : {$post['fid4']}<br>
Trader groupe : {$post['fid5']}

"trader status" pour moi est le nom du champs.
ensuite tu modifies le 4 (ou le 5) avec le chiffre qui correspond au champs que tu veux voir ici.

exemple ici

note : dans le skin que j'utilise actuellement, je n'ai la ligne contenant "user_details" donc j'ai copier/coller le coller après "replink" Wink
I try to translate:
You go to the templates, in the "message templates", "postbit", you can add code under "{$post['user_details']}" .
For example:
Trader status : {$post['fid4']}<br>
Trader groupe : {$post['fid5']}
Where "Trader status" or "Trader groupe" are the names of fields and to change the fields value you change the "fid" number with the good one.
Thanks!