My website is http://www.the-hunting-place.com/forum/
Im using subsilver2
Im editing two files: memberlist_view.html and ucp_profile_profile_info.html
What im trying to do is customize my custom profile fields in my ucp so I can position them where I want and what ever ones I want, just like what you can in the memberlist_view.html using this code...
Code: Select all
<!-- IF S_PROFILE_FIELDNAME -->
<tr>
<td class="gen" align="right">{PROFILE_FIELDNAME_NAME}: </td>
<td><b class="genmed"> {PROFILE_FIELDNAME_VALUE}</b></td>
</tr>
<!-- ENDIF -->
Right at the momment it displays all the custom profile fields in order and im wanting to move them around.
This is the default code that displays them all. What should I change in this to just display individual fields?
Code: Select all
<!-- BEGIN profile_fields -->
<tr>
<td class="row1" width="35%">
<b class="genmed">{profile_fields.LANG_NAME}: </b>
<!-- IF profile_fields.S_REQUIRED --><b>*</b><!-- ENDIF -->
<!-- IF profile_fields.LANG_EXPLAIN --><br /><span class="gensmall">{profile_fields.LANG_EXPLAIN}</span><!-- ENDIF -->
</td>
<td class="row2">{profile_fields.FIELD}<!-- IF profile_fields.ERROR --><br /><span class="gensmall error">{profile_fields.ERROR}</span><!-- ENDIF --></td>
</tr>
<!-- END profile_fields -->
Sorry if im not being clear with what im asking. Im not that good at explaing things.

Maybe if I showed somethings I was testing out, it will help.
Color red is what I tried changing
Well obvisiously what I edited didn't work but it might help explain what im going for here...<!-- BEGIN profile_fields_FIELDNAME -->
<tr>
<td class="row1" width="35%">
<b class="genmed">{profile_fields.FIELDNAME}: </b>
<!-- IF profile_fields.S_REQUIRED --><b>*</b><!-- ENDIF -->
<!-- IF profile_fields.LANG_EXPLAIN --><br /><span class="gensmall">{profile_fields.LANG_EXPLAIN}</span><!-- ENDIF -->
</td>
<td class="row2">{profile_fields.FIELD_FIELDNAME}<!-- IF profile_fields.ERROR --><br /><span class="gensmall error">{profile_fields.ERROR}</span><!-- ENDIF --></td>
</tr>
<!-- END profile_fields_FIELDNAME -->
Any help will be appreciated.
Thanks guys and gals!