PDA

View Full Version : Custom Profile field


flyrib
03-02-2012, 09:04 PM
Hello, I´m looking for a mod to my forum. The members need to ad info on a row under the usersname, where do I find this plugin or mod?

thank you very much!

Simon Lloyd
03-03-2012, 07:35 AM
You can create a custom profile field, your users can fill it in and you can show it under the username like this:
In postbit (or postbit legacy) look for<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
<if condition="$post['rank']"><div class="smallfont">$post[rank]</div></if>
and under it add<if condition="$post['field10']"><div class="smallfont">MY TEXT HERE: $post[field10]</div></if>
where "field10" would be the field number of your custom profile field :)

flyrib
03-04-2012, 10:06 AM
thanks a lot, will try it now.