Few customizations in mojoPortal

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/22/2014 3:58:48 AM
Gravatar
Total Posts 44
Regards, Dilip Wanave

Few customizations in mojoPortal

Hi,

For my one of the client site I need some customization as follows:

Can I add more fields to Registration page? If yes then will those be listed in member list?

Can I customize member list grid to add remove fields?

Can I add other search on member list page? currently we can search by name or IP Address only.

Is it possible to have rating option for member?

 

Can we do customization as per above questions in moportal?

 

Thanks,

Dilip

8/22/2014 7:15:48 AM
Gravatar
Total Posts 18439

Re: Few customizations in mojoPortal

you can add custom user profile properties and configure if they are required on the registration page.

However the custom profile data is stored in a different table like key value so our memberlist does not join that table or show any custom properties, as it would be a much more expensive query trying to do that, especially if we try to bring back all custom properties for each row in mp_Users.

There is some limited configuration for what is shown on member list page but it only shows things from mp_Users table. If you look in the code for member list you will see there are some settings available to show email address and a few other things but not much.

You could implement a custom Memberlist page with a different url and you can make out memberlist link point to your page with:

<add key="MemberListUrl" value="/MemberList.aspx"/>

changing the value to point to your custom url. Then you can implement whatever you want or need in your own memberlist.

currently we have not implemented rating for users, however the content rating system can be used to store rating for any item identified by a guid and users have UserGuid, so technically it is possible to store user ratings there but we don't have any UI implemented for that purpose.

8/22/2014 7:22:17 AM
Gravatar
Total Posts 44
Regards, Dilip Wanave

Re: Few customizations in mojoPortal

Thanks Joe for the explanation.

 

I will try by creating new custom page for member list to overcome the Client's requirement.

 

 

Thanks,

Dilip

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