WordPress standard code for Password and user name registration not working

Home Forums Legacy Support Support queries Other issues WordPress standard code for Password and user name registration not working

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #217263
    omimexico
    Spectator
    We noticed that when we use the standard Wordpress code for our users to update their password for login, that your wplms has changed the standard use. Here is our workflow:
    1. User registers as student using our custom page.
    2. Upon approved registration, student user is given an email to update login credentials.
    3. Student User should be taken to Wordpress password update page so that he can create his login credentials.
    We have had problems coding step #3. Please provide code that will allow our students to go to a create login credentials page. Thanks guys!
    #217378
    Mk
    Moderator
    We have already an option to update the password. Refer: http://somup.com/cqijjxeV9s
    #217531
    omimexico
    Spectator
    Your response did not answer my question. I am paying for customer support, and I expect you guys to answer correctly. I will REPEAT: Here is our workflow: User registers as student using our custom page. Upon approved registration, student user is given an email to update login credentials. In the email, student is given a hyperlink that when clicked, it provides a token for them to log in. The Student User should be taken to Wordpress password update page so that he can create his login credentials. Based upon how your current code is written, we want the student to be taken to https://website.com/members-directory/{{student email}}/settings/ We have had problems coding step #4. Please provide code that will allow our students to go to a create login credentials page. We want the student to be taken to https://website.com/members-directory/{{student email}}/settings/Thanks guys! We need help with step #4. DO YOU UNDERSTAND???
    #217621
    Mk
    Moderator
    Well in wplms user already registers using  his email ,chosen  username and chosen password . If there is another email or username with the same a warning shown to chenage the username and email . so there is no need for a custom code to generate the login credentials with the user . If you do not want to send the activation email to user (which activates the user account) and want to manually approve the accounts then this is possible with our custom registration forms : https://wplms.io/support/knowledge-base/custom-registration-forms-in-wplms/   Please tell us why you are taking this registration process ? the code to generate the login credentials is not that easy to write.there has to be some security and validations .   Plus this feature is not available as of now and falls under customization which is not covered in theme support but still we wil try to help you out with this .
    #218284
    omimexico
    Spectator
    You said, "f you do not want to send the activation email to user (which activates the user account) and want to manually approve the accounts then this is possible with our custom registration forms "
    1. We manually approve accounts.
    2. The student is sent a login email (via wplms)
    3. The student clicks the hyperlink to activate account.
    4. The student is granted access, HOWEVER the problem is that the student is never prompted to create password.
    How do we trigger wplms to prompt student to create password?
    #218454
    Mk
    Moderator
    #218647
    omimexico
    Spectator
    This reply has been marked as private.
    #218799
    Mk
    Moderator
    Sorry sir, Currently available redirections are these: http://prntscr.com/ogb9pf For custom code, I will have to look in codes. Then I will reply, what can I do in your issue.  
    #218991
    omimexico
    Spectator
    I await your response.
    #219086
    Mk
    Moderator
    Please add this code in plugins-> wplms-customizer-> wplms-customizer.php    add_filter('login_redirect',function ($redirect_url,$request_url,$user){     $redirect_url = bp_core_get_user_domain($user->ID).'settings';     return $redirect_url;   },9999,3);
Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘WordPress standard code for Password and user name registration not working’ is closed to new replies.