2015-08-25, 07:05 PM
Hi there,
For some reason, my custom profile fields aren't displaying on my profile.
Below is the coding I have:
And it looks like this on my page despite all fields being filled in on the settings:
![[Image: 790bbd9c50e63cd24a2021ce23c3010f.png]](https://camo.mybb.com/8798546523a4ede23bd4f65621a0023b79fb9e87/68747470733a2f2f692e6779617a6f2e636f6d2f37393062626439633530653633636432346132303231636532336333303130662e706e67)
Thanks.
For some reason, my custom profile fields aren't displaying on my profile.
Below is the coding I have:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder tfixed">
<colgroup>
<col style="width: 25%;" />
</colgroup>
<tr>
<td class="{$bgcolor}"><strong>Xbox Gamertag:</strong></td>
<td class="{$bgcolor}">{$userfields['fid11']}</td>
</tr>
<tr>
<td class="{$bgcolor}"><strong>PlayStation ID:</strong></td>
<td class="{$bgcolor}">{$userfields['fid10']}</td>
</tr>
<tr>
<td class="{$bgcolor}"><strong>Steam:</strong></td>
<td class="{$bgcolor}">{$userfields['fid14']}</td>
</tr>
<tr>
<td class="{$bgcolor}"><strong>Twitter:</strong></td>
<td class="{$bgcolor}">{$userfields['fid8']}</td>
</tr>
<tr>
<td class="{$bgcolor}"><strong>YouTube:</strong></td>
<td class="{$bgcolor}">{$userfields['fid9']}</td>
</tr>
<tr>
<td class="{$bgcolor}"><strong>Skype:</strong></td>
<td class="{$bgcolor}">{$userfields['fid13']}</td>
</tr>
<if !empty($userfields['fid21']) then>
<tr>
<td class="{$bgcolor}"><strong>Occupation:</strong></td>
<td class="{$bgcolor}">{$userfields['fid21']}</td>
</tr>
</if>
{$website}
{$sendemail}
{$sendpm}
<if !empty($userfields['fid1']) then>
<tr>
<td class="{$bgcolor}"><strong>About Me:</strong></td>
<td class="{$bgcolor}">{$userfields['fid2']}</td>
</tr>
</if>
</table>
And it looks like this on my page despite all fields being filled in on the settings:
Thanks.