The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
230 views

replace wp-login.php login forms via a hook & use custom forms with wp-login form validation

I am customizing all the wp-login.php forms, i.e., login, lost password, register, etc. I have a working model but when I decoded to toss in the default error messages on my custom forms I thought ...
0
votes
1answer
25 views

Replace dash with space in username on login

All my users have usernames that follow this pattern: firstname-lastname (with a dash between them). However, I would like to allow them to login to WP (multisite) with a space instead of a dash. ...
0
votes
1answer
99 views

How to bypass the username as a required field in registration and just use email address instead?

Is there a clean way of doing so? I would prefer doing that in functions.php using some action and/ or filter hooks. The 2nd-best option would be using some good plugin out there. (I haven't seen 1 ...
0
votes
1answer
2k views

Disable Or Redirect WP-login.php

Is there a way to prevent visitors, whether logged in or not, from reaching mysite.com/wp-login.php ? I have a separate login form that is all we need. I know I can re-style the form generated by ...
0
votes
0answers
30 views

Prevent redirect on custom wordpress login form when incorrect details are entered or if the fields are empty

I'm having a little trouble with a custom login form that I've created. <?php if (!(current_user_can('level_0'))){ ?> <div class="login-form"> <form action="<?php echo ...
0
votes
0answers
31 views

Registration Fail Redirect Problem

We use two registration links allowing users to register for different roles: /wp-login.php?action=register&utype=subscriber /wp-login.php?action=register&utype=contributer The subscriber ...
0
votes
0answers
44 views

Prevent redirect wp-login when custom login fails

I made a custom login/register page wich seems to work fine.. This is the line that logs the user require_once(ABSPATH . WPINC . '/registration.php'); if($_POST['submitLogin']){ //We shall ...
0
votes
0answers
61 views

wp-login/admin redirects to different dash

I'm having a problem with cloning wordpress and trying to login to the new one. I've searched the wordpress support pages but couldn't find a fix. I have a client who wants a website exactly like ...