Topic: Sex specific profile pictures?
How do I change this?
member sections picture
<!-- IF member_picture AND member_picture_active -->
<a href="{top.virtual_path}{member_profile_link}"><img src="{top.virtual_pic_path}{member_picture}" alt="" border="0" /><br></a>
<!-- ELSE -->
<a href="{top.virtual_path}{member_profile_link}"><img src="{top.virtual_tpl_path}{session.template}/media/user_picture_none.gif" alt="" border="0" /><br></a>
<!-- ENDIF -->Into
....
<!-- ELSE -->
<!-- IF SEX == MALE -->
<a href="{top.virtual_path}{member_profile_link}"><img src="{top.virtual_tpl_path}{session.template}/media/user_female_none.gif" alt="" border="0" /><br></a>
<!-- ELSE -->
<a href="{top.virtual_path}{member_profile_link}"><img src="{top.virtual_tpl_path}{session.template}/media/user_male_none.gif" alt="" border="0" /><br></a>
<!-- ENDIF -->Any ideas what I can query against to find out the members sex and thus display a male/female shadow?
Last edited by Albaengine (2008-11-20 07:55:31)