Hi,
I am trying to output my users profile information but my fields are not being parsed. some work and some dont. For example I can use {screen_name} and {email} but for example {bio} {gender} and {photo_url} does not work. All i get in the front end is the actual tag name.
I also have user module installed and when I use their tags, I get the same result.
Here is my test template and attached is the rendered page:
In the EE docs it says that all the field are variables that can be used anywhere on the templates.
I did make sure that the member photo and avatar are enabled in the preferences.
any ideas?
{screen_name}
{email}
{gender}
{bio}
{photo_url}{photo_filename}
{exp:user:stats}
<div id="main">
{if avatar_filename}{avatar_url}{avatar_filename}{/if}
<h2>{screen_name}</h2>
<p>{group_title}<br />
<a href="/?ACT=19&mbr={member_id}">View all posts by this member</a><br />
{if photo_filename}{photo_url}{photo_filename}{if:else}Member photo does not exist{/if}<br />
{photo_url}{photo_filename}</p>
<p></div></p>
<p> <br />
<div id="communications"></p><h3>Communications</h3>
<p><label>URL</label> {url}<br />
<label>Email Address</label> {encode="{email}"}<br />
<label>Private Message</label> <a href="http://{path=">/themes/profile_themes/default/images/icon_pm.gif</a><br />
<label>AOL IM</label> {if aol_im}<a href="http://edit.yahoo.com/config/send_webmesg?.target=bnvvbn&.src=pg%22>/themes/profile_themes/default/images/icon_aim.gif</a>{/if}<label>ICQ</label>" rel="noopener">/themes/profile_themes/default/images/icon_yim.gif</a>{/if}<br />
<label>MSN Messenger</label> {msn_im}<br />
</div><br />
<br />
<div id="personal_info"></p><h3>Personal Info</h3>
<p><label>Location</label> {location}<br />
<label>Occupation</label> {occupation}<br />
<label>Interests</label> {interests}<br />
<label>Your Custom Field</label> {your_custom_field}<br />
<label>Another Custom Field</label> {another_custom_field}<br />
</div><br />
<br />
<div id="statistics"></p><h3>Statistics</h3>
<p><label>Member Group</label> {group_title}<br />
<label>Total Weblog Entries</label> {total_entries}<br />
<label>Total Comments</label> {total_comments}<br />
<label>Member Local Time</label> {current_time format="%F %j, %Y %g:%i %a"}<br />
<label>Last Visit</label> {last_visit format="%F %j, %Y %g:%i %a"}<br />
<label>Join Date</label> {join_date format="%F %j, %Y %g:%i %a"}<br />
<label>Most Recent Entry</label> {last_entry_date format="%F %j, %Y %g:%i %a"}<br />
<label>Most Recent Comment</label> {last_comment_date format="%F %j, %Y %g:%i %a"}<br />
<label>Birthday</label> {if bday_m == "1"}January{if:elseif bday_m == "2"}February{if:elseif bday_m == "3"}March{if:elseif bday_m == "4"}April{if:elseif bday_m == "5"}May{if:elseif bday_m == "6"}June{if:elseif bday_m == "7"}July{if:elseif bday_m == "8"}August{if:elseif bday_m == "9"}September{if:elseif bday_m == "10"}October{if:elseif bday_m == "11"}November{if:elseif bday_m == "12"}December{if:else}{/if}{if bday_d} {bday_d}{/if}{if bday_d && bday_y},{/if}{if bday_y} {bday_y}{/if}<br />
</div><br />
<br />
<div id="bio"></p><h3>Bio</h3>
<p>{bio}<br />
</div><br />
<br />
{/exp:user:stats}