<<<=== Finishing Touches ===>>>
To make the profilefields you just created work, open the following template:
"PB-WoW > Postbit Templates > postbit_legacy"
The trick is now to change all the profile field ID's to the ones you have just created.
You can find them under the header <!-- Easy Access ProfileField Config --> which is
usually located somewhere at the top of the template.
You will find a few lines that look like this:
<if condition="$pf_race = $post['field14']"></if>
Here you will need to edit the number 14 to the id number you have for your "Race" user
profile field you just created. So if your "Race" user profile field has "field8" as ID
you need to change:
<if condition="$pf_race = $post['field14']"></if>
to:
<if condition="$pf_race = $post['field8']"></if>
Do the same thing for all 6 those lines untill you have them all correct. Now copy those
6 lines with CRTL-C or something, we need to copy those lines to another template.
Don't forget to save the template
.
Now open up the following template: Member Info Templates > MEMBERINFO.
Copy the lines over the 6 lines that are already there. Save, done.
<<<=== / Finishing Touches ===>>>