The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
270 views

How do I change the language of only the login page?

My wordpress blog is set up as de_DE. This means that my login page is also displayed in de_DE. I would like to only have the login page in en_US. So, How would I programmatically change a single ...
3
votes
1answer
1k views

Multi-steps WordPress registration : in 4 steps how to?

I saw in several WordPress sites up on registration that the registration process is in 3 or 4 steps. how can i implement such process to my theme? ie: choose your role + fill in register ...
3
votes
1answer
252 views

Logout/login redirect CSS issue

I'm using WordPress Multisite. When I use wp_logout_url(), I get redirected to the login page but somehow I end at a different login page without any styles applied <a href="<?php echo ...
2
votes
1answer
149 views

Modify Wp-Login Labels: Username to Email

Simple straightforward, question: How can you edit the labels of the wp-login.php form? I am using emails for logins, so I need to change 'username' to 'email' The answer here seems to be out of ...
2
votes
1answer
282 views

wordpress redirect after password reset

I would like to able to redirect to get_bloginfo('url'); after reseting password. But I cannot for life of me find any simple answer or function to do this. Does anyone know if this is possible? ...
1
vote
2answers
2k views

Can't access wp-admin

When trying to login one of my WP installs (regular WP 3.4.2-no multisite), I keep being redirected to the wp-login.php file. I've checked nearly everything: Password is correct and ...
1
vote
3answers
3k views

How to redirect all requests to wp-login.php?

I created some custom login/registration template pages and now I want that every request to wp-login.php to be redirected to a custom url. Now I have something like this: ...
1
vote
1answer
37 views

How can I add a custom script to footer of login page?

I need to add this: <script> jQuery(window).load(function() { ...
1
vote
1answer
1k views

Custom Login and Registration form in Ajax

How to create the custom login/Registration form using AJAX.
1
vote
3answers
721 views

Custom login form

I am very new to WordPress. I am trying to display a login form in the header section of my website. However, when I look at all of the files in my directory it is very overwhelming and I am afraid to ...
1
vote
1answer
54 views

How to trigger a login form notice message?

How can I trigger a message box to appear on the login form? I'l trying to get the little yellow notice bar to appear above the login form conditionally. The below code only print the content on the ...
1
vote
1answer
54 views

The comment login form is visible to me but not to the user

I am beginner in wordpress & i am working on my own blog ( http://cssground.com/ ). Right now i am facing an issue with the comment form. The comment form is visible to me & it's work fine but ...
1
vote
2answers
112 views

Load .txt file for login_message in wp-login.php

How do I load the contents of a text file - or any other file, like .php - and use the test for the login_message hook that prints a message above the #login box in wp-login.php? (BTW, this is in a ...
1
vote
1answer
76 views

Autologin only working the second time

I want to auto-login visitors to WP through email links. I use a "userid" parameter with their email and a "redirect_to" one to know where to point them. There are some protected areas in the site, ...
1
vote
2answers
400 views

deny IPs from wp-login using .htaccess

i am trying to ban a spam bot IP from my wordpress, since the "limit login attempts" extension mails me multiple times every day, that the same IP is trying to login. so i added the following to the ...
1
vote
2answers
188 views

Using /wp-admin works, using /login gives a 404. Why?

I just did a manual install and tried to login, but was unable to do so using domain.com/login. I got a 404 error. When I used domain.com/wp-admin, no issues. Did I do something wrong or forget to do ...
1
vote
2answers
174 views

Wordpress Login Footer URL

I want to change the url of the Wordpress 'Back to XXXX' on the wordpress url. I've used this function to change the logo url, but there doesnt seem to be a footerurl reference. add_filter( ...
1
vote
1answer
423 views

Action wp_login_failed not working if only one field is filled out

I created a login form in the frontend with wp_login_form(). In my functions.php file I added an action to prevent the redirect to /wp-login.php if the login failed with ...
1
vote
1answer
142 views

Wordpress error on log out 'Not Permitted' and can't log out

I've got a weird situation whereby I sometimes can't log in as clicking on a link (or going directly) to /wp-login.php shows me a blank page with the words 'Not Permitted'. If I go to the ...
1
vote
1answer
190 views

Redirect wp-login

I have a custom page called owner-login that has a wp_login_form() How can I disable wp-login.php so that: when a user writes wp-admin/ it will redirect him to the owner-login (if not logged) when ...
1
vote
1answer
231 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
83 views

How to set where user is redirected to after logging in at wp-login?

So i'm fairly certain this probably has something to do with the fact that I'm using a custom role I've set up in my functions.php file with almost 0 permissions. However, I'm still able to access ...
0
votes
2answers
66 views

Positioning the “Lost your password?” and “← Back to Site”

I'd like to customize the log-in page for my WordPress theme and although I can play around with the CSS, I would love to re-position the "Lost your password?" and "← Back to Site" links to be inside ...
0
votes
2answers
37 views

Is there anyway to get the inputted password string from the login form?

Is there anyway to get the password string from the login form?
0
votes
3answers
216 views

Change 'Back To Website' link in wp-login.php

The login form on the page wp-login.php has a link at the bottom that says "Back to website-name" This link always redirects to the home page I would like it to redirect to the page the user has come ...
0
votes
3answers
40 views

How do you add a custom link to the wordpress login page?

http://redrokk.com/wordpress/wp-content/uploads/2012/07/blank_wordpress_login_form1.png I want to add a custom link before the 'Lost your password?' link. I'm currently using a function that has some ...
0
votes
1answer
64 views

Allow access to a page for admins only

I need to know how to make a page template in WordPress that can only be accessed by admins. How could I apply it to the following template? <?php /* Template Name: Agency Area */ ?> <?php ...
0
votes
2answers
1k views

Login and Forgot password in Lightbox

How do i get Wordpress Login & Forgot password forms in one light-box which can then be displayed inside pages where the user has to be logged in to see the content? Can i just copy some of the ...
0
votes
1answer
167 views

Forcing frontend login with UI switch

Is there a way to force log-in even for viewing a WordPress blog that the blog's owner can turn on and off by themselves? I can hardcode it in the template's header.php like so: if ( ...
0
votes
1answer
185 views

Properly customizing login/register form

I'm working on a customized login form for WordPress. I noticed that it's pretty difficult to achieve what I wanted. Here's the HTML of the form: <form method="post" action="<?php ...
0
votes
1answer
145 views

send users logging in from wp-login.php directly to home page of site, rather than dashboard

I am currently using a plugin called Sidebar Login which allows users to bypass the dashboard and go directly to the site. However, when users login via /wp-login.php (e.g. when they click on their ...
0
votes
1answer
47 views

Alert Message through email or phone(Message)

Hi all I am newbie I need to know how to alert email or message while attempt login if success or if failure .That alert mail describe that login IP and date and time . Is it possible to do this ...
0
votes
1answer
680 views

Making the wordpress login form a jQuery dropdown

I'm using a plugin called sidebar-login to display a wordpress login form (it uses wp_login_form) in my sidebar. However, I feel like it the actual form (textboxes and labels) take up too much space ...
0
votes
1answer
215 views

Show errormessages on wrong username/password on custom loginform?

I use this simple HTML loginform in my sidebar. Does anyone have any clever way to make it show the errormessages when you type in wrong password or username? <form action="<?php echo ...
0
votes
1answer
70 views

How to access the actual input html of the login form

I'm designing a custom login template and I need a way to access the <input> html so I can add a label inside the input. I understand the use of wp_login_form() but that only lets me set the ...
0
votes
2answers
941 views

Prevent wp_login_form() from redirecting to wp-admin when there are errors

I have made a login form on the front-end of my site using wp_login_form(). However, when the user types in an incorrect username/password they are redirected to the wp-admin login form. How can you ...
0
votes
2answers
228 views

Creating a custom login on site.

Evening, I'm trying to make a simple 'login' feature for my site. I'd rather just have a dropdown box of sorts, and to login, the redirect back to the page you submitted it on. I've some code I ...
0
votes
1answer
243 views

Redirect away from login page

I'm trying to find a way to prevent the login screen from showing up when user makes a mistake filling out the login form. So, right now, I have the login form printed on a custom template. But if ...
0
votes
4answers
126 views

Moving from one host to another - cannot access the dashboard

I'm having a problem with my WordPress installation. I'm trying to move it from one host to another (switching hosting providers for my sites). I was following the instructions given here, and ...
0
votes
1answer
289 views

hook for lostpassword form

Im trying to add captcha to my remember lost password form: I've added the input with the lostpassword_form hook and is ok. now in the processing I need to add a error when captcha is invalid: ...
0
votes
2answers
230 views

Temporally disable password to login with empty password?

Does someone knows what part of wordpress code would I have to modify to be able to just enter into the admin panel without having to login? I need to work on a site but I wont have admin access ...
0
votes
1answer
128 views

How are all users now set to inactive?

My client, while working on his WP blog yesterday, was doing some cleanup and claims he just removed an unused admin account. The next time he went to login, the login page rejected his account saying ...
0
votes
0answers
18 views

htaccess rule to block login attempts with username “admin”? [migrated]

I've removed the username "admin" from my installations but wp-login.php is still getting hammered. Is there a way to use htaccess to block any requests from even getting to wp-login.php with if the ...
0
votes
3answers
52 views

Redirect user after login/registration globally

How it possible to redirect all users, even administrators after login to specific page? And also redirect users after successful registration? Any simplest way? For example I want to redirect users ...
0
votes
0answers
35 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
1answer
29 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
0answers
32 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
12 views

how to implement wp separate login for each role [duplicate]

I have two custom roles 'Doctor' and 'Patient' I have two page templates as patient and doctor. In patient page the users those who are registered using 'Patient' role are only able to login. ...
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
63 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 ...

1 2