When you visit your profile having Custom profile Fields enabled, you'll see some thing like this;
If you want to make them Separate, then here is how;
Go to: ACP > Configurations > Custom Profile Field > Select the Custom Profile Field that you want to make it separate > Edit [Options] > Edit Field > and select Yes in the following two options; (Showed Red in the Preview)
- Required ?
- Hide on profile ?
Save the field.
Now Go to: ACP > templates > Your theme's Templates > Member Templates > member_profile > and find;
Note couple of things:
1) {$userfields['fid7']} - This is the actual code which do the magic. You just need to replace 7 to the Custom Profile Field ID.
2) Use the Box Code (Provided Below) to use it for your rest of the Custom Profile Fields (which you need to separate them from the
Where;
CUSTOM_PROFILE_FIELD_NAME = Your Custom profile field name.
X = Custom profile field ID.
Finally you'll see something like this:
Thanks
If you want to make them Separate, then here is how;
Go to: ACP > Configurations > Custom Profile Field > Select the Custom Profile Field that you want to make it separate > Edit [Options] > Edit Field > and select Yes in the following two options; (Showed Red in the Preview)
- Required ?
- Hide on profile ?
Save the field.
Now Go to: ACP > templates > Your theme's Templates > Member Templates > member_profile > and find;
{$signature}
and add the following code just below it;<br/>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<strong>Favourite Book</strong>
</td>
</tr>
<tr>
<td class="trow1">
{$memprofile['username']}'s favourite book is: <strong>{$userfields['fid7']}</strong>
</td>
</tr>
</table>
Note couple of things:
1) {$userfields['fid7']} - This is the actual code which do the magic. You just need to replace 7 to the Custom Profile Field ID.
2) Use the Box Code (Provided Below) to use it for your rest of the Custom Profile Fields (which you need to separate them from the
Additional Info
box).<br/>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<strong>CUSTOM_PROFILE_FIELD_NAME</strong>
</td>
</tr>
<tr>
<td class="trow1">
{$memprofile['username']}'s CUSTOM_PROFILE_FIELD_NAME is: <strong>{$userfields['fidX']}</strong>
</td>
</tr>
</table>
Where;
CUSTOM_PROFILE_FIELD_NAME = Your Custom profile field name.
X = Custom profile field ID.
Finally you'll see something like this:
Thanks