Ok, so I just want to display the following in my template:
{photo_url} {member_firstname} {member_lastname} {bio}...so I tried this…just to test
{exp:member:custom_profile_data}
{email}
{/exp:member:custom_profile_data}
..and I get this error…
“The following tag has a syntax error”
http://screencast.com/t/OGEzMGZiMT
...finally I tried this..
<ul>
{exp:query sql="SELECT * FROM exp_members NATURAL JOIN exp_member_data WHERE m_field_id_3 = 'Yes'"}
<li>
<span>{photo_url}</span>
<span>{m_field_id_1} {m_field_id_2}</span>
<span>{bio}</span>
</li>
{/exp:query}
</ul>...but my simple names for the custom fields as well as{photo_url} does exist….so I have to generate the photo url manually?
Is there a simpler way to do this? This seems like a pretty standard implementation.