Tell us what you are trying to do?
I am trying to display content within my code excerpt below.
I can see how the calls are made to present fields that are editable by the user, but what if I wanted to only display but not allow editing of other fields that are custom fields on the user. For example, if you look at this:
[cred_field field='maryland-license-password' post='user' value='' urlparam='' class='form-control' output='bootstrap']
You can see that this presents an editable field for the user, but what if I just wanted to display the value stored already for maryland-license-password?
Is there any documentation that you are following?
I cannot find a syntax list for Toolset Types that would give me the code for basic functionality. Please advise if there is one that could aid me.
Is there a similar example that we can see?
You can see my creduserform code below.
[creduserform class='cred-user-form cred-keep-original']
[cred_field field='form_messages' value='' class='alert alert-warning']
<br>
<bold>Change LicenseTraxx Password:</bold>
<div class="form-group">
<label>Password</label>
[cred_field field='user_pass' post='user' value='' urlparam='' class='form-control' output='bootstrap']
</div>
<div class="form-group">
<label>Repeat Password</label>
[cred_field field='user_pass2' post='user' value='' urlparam='' class='form-control' output='bootstrap']
</div>
<br>
<bold>Jurisdictions:</bold>
<div class="form-group">
<label>Maryland License Password</label>
[cred_field field='maryland-license-password' post='user' value='' urlparam='' class='form-control' output='bootstrap']
</div>
<div class="form-group">
<label>DC License Username</label>
[cred_field field='dc-license-username' post='user' value='' urlparam='' class='form-control' output='bootstrap']
</div>
<div class="form-group">
<label>DC License Password</label>
[cred_field field='dc-license-password' post='user' value='' urlparam='' class='form-control' output='bootstrap']
</div>
<br>
<bold>Your Name:</bold>
<div class="form-group">
<label>Last Name</label>
[cred_field field='last_name' post='user' value='' urlparam='' class='form-control' output='bootstrap']
</div>
<div class="form-group">
<label>First Name</label>
[cred_field field='first_name' post='user' value='' urlparam='' class='form-control' output='bootstrap']
</div>
[cred_field field='form_submit' value='Submit' urlparam='' class='btn btn-primary btn-lg' output='bootstrap']
[/creduserform]
What is the link to your site?
licensetraxx.com but what is discussed here is not publicly viewable at this time.