guys,
I am trying to add a link to my custom profiles section, I got the link part down but when I add it to the memberinfo_customfields template it pints the link below every custum profile field, how do I get it to print only once as the last item?
Code:
<if condition="$profilefield['value'] != '' ">
<tr>
<td>
<strong>$profilefield[title]</strong>:<br />
$profilefield[value]
</td>
</tr>
</if>
<tr>
<td><strong>My Virtual Bar Link</strong>
<a href="$userinfo[field9]" target="_blank">$userinfo[field9]</a> </td>
</tr>