Hello- I've got my member directory cards set up nicely except one minor issue- I can't seem to find a way to display their email addresses publicly. In the site settings> user account settings> there does not appear to be a way to make the email address show publicly by default.
I've attached a screenshot here of what my directory cards look like to unregistered users.
Here is the code used for the directory card. Can anyone advise on how I can make this info show to all users, regardless of registration status?
<div class="mdMemberDetails" data-bind="css: {mdFriend: IsFriend(), mdFollowing: IsFollowing(), mdFollower: IsFollower() }">
<a href="" class="mdMemberImg" data-bind="attr: { title: DisplayName, href: ProfileUrl }">
<span><img data-bind="attr: { src: getProfilePicture(50,50), title: DisplayName }" /></span>
</a>
<ul class="MdMemberInfo">
<li class="mdDisplayName">
<a href="" title="" class="mdMemberTitle" data-bind="attr: { title: DisplayName, href: ProfileUrl }, event: { mouseover: $parent.showPopUp }">
<span data-bind="text: DisplayName"></span>
</a>
</li>
<li class="mdTitle"><p><bold><span data-bind="text: Title"></span></bold></p></li>
<li class="mdLocation"><p><span data-bind="text: Location()"></span></p></li>
<li class="mdLocation"><span data-bind="text: ProfileProperties().Street"></span>
<li class="mdPhone"><p><strong>Phone:</strong></p><span data-bind="text: Phone"></span></li>
<li class="mdEmail"><a href="#"><p><strong>Email:</strong></p><span data-bind="text: Email"></span></a>
</li>
<li ><p><p><strong>Fax:</strong></p><span data-bind="html: ProfileProperties().Fax"></span></p></li>
<li ><p><p><strong>Website:</strong></p><span data-bind="html: ProfileProperties().Website"></span></p></li>
</ul>
<ul class="mdHoverActions" data-bind="visible: !IsUser() && IsAuthenticated">
<li class="mdFriendRequest" data-bind="visible: FriendStatus() == 0"><a href="" class="firstItem" data-bind="click: addFriend"><span data-bind="text: AddFriendText"></span></a></li>
<li class="mdFriendPending" data-bind="visible: IsPending()"><p><span class="firstItem"><span data-bind="text: FriendPendingText"></span></span></p></li>
<li class="mdFriendAccept" data-bind="visible: HasPendingRequest()"><a href="" class="firstItem" data-bind="click: acceptFriend"><span data-bind="text: AcceptFriendText"></span></a></li>
<li class="mdFriendRemove" data-bind="visible: IsFriend()"><a href="" class="firstItem" data-bind="click: removeFriend"><span data-bind="text: RemoveFriendText"></span></a></li>
<li class="mdFollow" data-bind="visible: !IsFollowing()"><a href="" title="" class="firstItem" data-bind="click: follow"><span data-bind="text: FollowText"></span></a></li>
<li class="mdUnfollow" data-bind="visible: IsFollowing()"><a href="" title="" class="firstItem" data-bind="click: unFollow"><span data-bind="text: UnFollowText"></span></a></li>
</ul>
</div>