I currently have a condition in the postbit template that shows a link under the username, with the URL having a user's name placed at the end of it:
Code:
<if condition="is_member_of($post, 17) OR is_member_of($post, 18) OR is_member_of($post, 6)">
<a class="smallfont" target="_blank" href="http://url.com?address=$post[musername]">Linky</a>
</if>
Is there a way I could "link" it with another condition that checks to see if they left a profile field blank?
What I am trying to do is have it check to see if a particular (field7) profile field isn't blank. If there IS something in it, then append it to the end of the URL instead of the username. On the other hand, if it IS blank, then grab the username instead and append it to the end of the URL without the field's value (because it is blank anyway).