PDA

View Full Version : Custom Profile Field


Linkeb3
04-03-2015, 01:42 PM
I manage a PS4 gaming clan page, i'm looking to add PSN ID's for instance to where "Location" shows up within the forums and within the members list. The field is created, i just can't publicize it the way i'd like. Hints, ideas?

MarkFL
04-03-2015, 03:51 PM
If you wish for this field to show up in the user postbits, you will likely have to edit the "postbit_legacy" template to add the HTML at the location you want. You will need something like:

<vb:if condition="$post['fieldXX']">
<dt>Field Description</dt><dd>{vb:raw post.fieldXX}</dd>
</vb:if>

The code in red will pertain to the new field you have created, where "XX" is the field's id and "Field Description" is the text you want to describe the field.