Show email address when viewing profile??

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
8/27/2008 5:54:38 PM
Gravatar
Total Posts 33

Show email address when viewing profile??

Hi Joe,

I have successfully imported the users, now, I got a problem, since I use the memberlist as a person finder in our intranet, I need to show the email address of the person in profile. Could you please implement something so I can trigger to display the email in the admin panel? The reason for that is, I don't want to have my version of profiledisplay page clash with any future releases.

Regards

James

8/28/2008 7:02:53 AM
Gravatar
Total Posts 18439

Re: Show email address when viewing profile??

Hi James,

I just implemented support for this. It will be in svn trunk by tonight for developers and in the next release for everyone else and then you wil see this new setting in Web.config:

<!-- this should generally be false on public sites but on an intranet you may wish to show the user email -->
<add key="ShowEmailInMemberList" value="false" />

If you override that to true in your user.config it will show the email

Hope it helps,

Joe

8/28/2008 3:41:10 PM
Gravatar
Total Posts 33

Re: Show email address when viewing profile??

Thanks Joe for the quick response.

8/28/2008 3:46:28 PM
Gravatar
Total Posts 33

Re: Show email address when viewing profile??

Sorry for being greedy, I should has asked it along with my email issue, can you please also enable to view the user login name and user id???

Also how do I enable the memberlist page for public viewing, without logging in?

Cheers!

James

8/29/2008 6:14:51 AM
Gravatar
Total Posts 18439

Re: Show email address when viewing profile??

I will look into adding an option for that when I get a chance.

To enable anonymous people to view the member list change this in Web.config:

<add key="RolesThatCanViewMemberList" value="Authenticated Users" />

to this:

<add key="RolesThatCanViewMemberList" value="All Users" />

Hope it helps,

Joe

8/29/2008 7:02:56 AM
Gravatar
Total Posts 18439

Re: Show email address when viewing profile??

I implemented the options to show login name and user id. It will be in svn trunk by tonight. The new settings are:

<add key="ShowLoginNameInMemberList" value="false" />
<add key="ShowUserIDInMemberList" value="false" />

Best,

Joe

You must sign in to post in the forums. This thread is closed to new posts.