Hi,
I added the shortcodes of reset and forget password forms but they won't show up in front end :
[wpv-reset-password-form]
[wpv-forgot-password-form]
but others like the logout link does work just perfect, I tried to add them to pages, posts or views but won't show up in front-end.
what could be the issue ?
Thanks
Hello,
Both of the shortcodes should be showed up when you are non-logged in user:
[wpv-reset-password-form]
[wpv-forgot-password-form]
Please try to logout and test again.
More help:
https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-reset-password-form
https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-reset-password-form
Thank you Luo,
How did I miss that, what I needed is a form that allows users to update their password if they needed to from their dashboard, they would enter current password and new and confirmation passwords, so in this case they will diffidently be logged-in users, can I do that with CRED edit users form ?
woocommerce my account page dashboard allows users to change their current passwords but I am using a plugin that allows me to customize my account page.
For the new question:
they would enter current password and new and confirmation passwords, so in this case they will diffidently be logged-in users, can I do that with CRED edit users form?
There isn't such kind of feature within CRED form, but you can use CRED form for editing user to change user's password without entering current password
Thank you Luo,
that will do, beside reset and forget forms all will work great thanks !
[creduserform class='cred-user-form cred-keep-original']
[cred_field field='form_messages' value='' class='alert alert-warning']
<div style="direction:rtl;">
<div class="mx-auto text-center row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12" style="padding:1px;">
<div class="form-group tooltipBase">
<span class="tooltipTop tooltipHint "> You can't edit your username </span>
<label> User Name </label>
[cred_field field='user_login' post='user' value='' urlparam='' readonly='true' class='form-control' output='bootstrap']
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12" style="padding:1px;">
<div class="form-group tooltipBase">
<span class="tooltipTop tooltipHint "> You can't Edit your Email </span>
<label>Email </label>
[cred_field field='user_email' post='user' value='' urlparam='' readonly='true' class='form-control' output='bootstrap']
</div>
</div>
</div>
<!-- row -->
<div class="mx-auto text-center row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 userEditPass">
<!-- pass row -->
<div class="mx-auto row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12" style="padding:1px;">
<div class="form-group tooltipBase">
<span class="tooltipTop tooltipHint "> pass 1 </span>
<label> pass 1 </label>
[cred_field field='user_pass' post='user' value='' urlparam='' class='form-control' output='bootstrap']
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12" style="padding:1px;">
<div class="form-group tooltipBase">
<span class="tooltipTop tooltipHint "> pass 2 </span>
<label> pass 2 </label>
[cred_field field='user_pass2' post='user' value='' urlparam='' class='form-control' output='bootstrap']
</div>
</div>
</div>
<!-- row ends -->
</div>
<div id="submitBtn">
[cred_field field='form_submit' value='update password' urlparam='' class='btn submitBtn' output='bootstrap']
</div>
[/creduserform]