member data that was showing up until a few days ago… won’t appear… This is the code in my template:
<div id="members">
<h4>Member Info</h4>
<p>
{if logged_in}
{exp:member:custom_profile_data}
{if photo}
<div id="memberphoto"><img src="{photo_url}" width="{photo_width}" height="{photo_height}" alt="{screen_name}'s photo" /></div>
{if:else}
<div id="memberphoto"><img src="./images/nophoto.jpg" width="45" height="45" alt="Add your photo" /></div>
{/if}
<p>Welcome, <a href="{path=member/profile}">{username}</a></p>
<p><strong>Join Date:</strong> {join_date format="%M.%d.%Y"}</p>
<p><strong>Last login:</strong> {last_visit format="%M.%d.%Y"}</p>
<p><strong>Total comments:</strong> {total_comments}</p>
{join_date}
<div class="account"><a href="{path=member/profile}">Your Account</a></div>
<div class="account"><a href="{path={member_template_group}/blog-entry}">Write a Blog</a></div>
<div class="account"><a href="{path={member_template_group}}">Member Homepage</a></div>
<div class="account"><a href="{path=logout}">Logout</a></div>
{/exp:member:custom_profile_data}
{/if}
This is what is showing up in the HTML
<div id="members">
<h4>Member Info</h4>
<p>
That’s it… Any reasons why the data would just stop showing up?
