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?
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?
We put that kinda stuff right into the memberinfo and postbit templates :P
Thanks for the tip but isn't the problem the same there? it loops through the profile fields and end up outputting the profile field then outputs the coded link then does the same thing for each field. So I guess I need to know what conditional I should use so that it only outputs the
Code:
<tr>
<td><strong>My Virtual Bar Link</strong>
<a href="$userinfo[field9]" target="_blank">$userinfo[field9]</a> </td>
</tr>
You're putting it in the wrong template. Tekton is right. Put it in the memberinfo template. Find the customfields cariable and put it below/above that.
You're putting it in the wrong template. Tekton is right. Put it in the memberinfo template. Find the customfields cariable and put it below/above that.
Thank You Very much Guys
Sorry for being so dense on this one