Developer forum

Forum » CMS - Standard features » RE: How do i add custom fields to users?

RE: How do i add custom fields to users?

Hans Ravnsfjall
Reply

I want to add two checkboxes to users. How do I do this, or is it possible?

 

I need it on a free solution with the extranet/intranet module.


Replies

 
Mikkel Ricky
 
Hans Ravnsfjall
Reply

Ok, thank you very mutch.

 

I have Created checkboxes with systemtag AccesUser_Email, and want these to be editable when loggin in via the extranet/intranet user module.

 

I have tried this <!--@UserManagement:User.AccessUser_Email.Input-->

 

But that doesn´t work?

 

How do I do this correctly?

 

 

 

 

 

 
Dmitriy Benyuk
Reply

Hi Hans,

There is a loop which renders all custom fields for the user in the extranet module:
<!--@LoopStart(UserManagement:User.CustomFields)-->
            <tr>
                <th align="left"><!--@CustomField.Name-->: </th>
                <td><!--@CustomField.Control--></td>
            </tr>
        <!--@LoopEnd(UserManagement:User.CustomFields)-->

Also for the specific custom field it's name should be:

<!--@UserManagement:User.CustomField.AccessUser_Email.Input-->

 

You must be logged in to post in the forum