Quote:
Originally Posted by Quantnet.org
This is where the instruction breaks my memberinfo template
I went through one by one, make changes and see what breaks to naildown to this
Find
Code:
<if condition="$show['age']">
Add beneath
Code:
<if condition="$userinfo['zodiac_sign']">
<tr>
<td>
<strong>$vbphrase[iprof_zodiac_sign]</strong>:<br />
$userinfo[zodiac_sign]
</td>
</tr>
</if>
|
I had the same issue.
I moved the added code a few lines lower to right below this:
Code:
<dd class="smallfont">$userinfo[age]</dd>
</if>