Skip Navigation

[Resolved] reset and forget password forms won’t show up

This thread is resolved. Here is a description of the problem and solution.

Problem:

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]

Solution:

Both of the shortcodes should be showed up when you are non-logged in user, please try to logout and test again.

Relevant Documentation:

https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-reset-password-form

This support ticket is created 6 years, 7 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 4 replies, has 2 voices.

Last updated by abdullahA-6 6 years, 7 months ago.

Assisted by: Luo Yang.

Author
Posts
#901359

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

#901488

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

#901512

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.

#901530

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

#901542

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]