The wp-login-form tag has no wiki summary.
0
votes
0answers
9 views
wordpress admin asks password after logged in ssl site
i am an wordpress developer. i am currently working in a project which is ssl site. once i logged into any page of the wordpress as admin
and when i click the edit link to edit the page, it asks ...
0
votes
0answers
31 views
Pass a variable between WordPress Custom login and BuddyPress registration page
I am coding a custom WordPress template that has to be also BuddyPress compatible.
Actually when BuddyPress is Disabled my custom login/registration form works without problems but, as soon as I ...
0
votes
0answers
38 views
Customize registration form with wp-login and Cimy User Extra Fields plugin
I am using Cimy User Extra Fields plugin for extra fields in Wordpress registration but I would like to make it in two colloms so users would not scroll since now I have to many fields. I have problem ...
0
votes
1answer
22 views
I lock the site's contents, click on a post, redirect to login, enter uname+password but fail to redirect to article
As stated in the following:
http://wordpress.stackexchange.com/a/100573/16266
I lock the site's contents.
I then click on a post.
I am navigated to wp-login screen.
I enter the correct username + ...
0
votes
3answers
55 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
3answers
66 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
46 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 ...
1
vote
1answer
229 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
48 views
How can I add a custom script to footer of login page?
I need to add this:
<script>
jQuery(window).load(function() {
...
0
votes
1answer
34 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
37 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
2answers
39 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
0answers
57 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 ...
-1
votes
0answers
67 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 ...
0
votes
1answer
128 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 ...
1
vote
1answer
77 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, ...
0
votes
1answer
209 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 ...
3
votes
1answer
256 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 ...
1
vote
1answer
240 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 ...
2
votes
1answer
341 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?
...
2
votes
3answers
919 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 ...
0
votes
3answers
242 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
1answer
179 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
2answers
75 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 ...
1
vote
1answer
64 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 ...
0
votes
1answer
50 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 ...
1
vote
1answer
239 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 ...
1
vote
1answer
1k views
Custom Login and Registration form in Ajax
How to create the custom login/Registration form using AJAX.
0
votes
1answer
90 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 ...
2
votes
1answer
185 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 ...
1
vote
1answer
60 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 ...
0
votes
1answer
66 views
Showing A Menu When Only Users Are Logged In [duplicate]
Possible Duplicate:
How to Use the Function is_user_logged_in To Display Different Menus?
I wish to create a log in page, that displays like an extended menu for example (the people who ...
1
vote
2answers
122 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 ...
0
votes
1answer
773 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
67 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 ...
4
votes
3answers
304 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 ...
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
2answers
408 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 ...
0
votes
0answers
15 views
Embedding wp-login actions on site [duplicate]
Possible Duplicate:
How to show 'login error' and 'lost password' on my template page?
As you can see on this site I'm using a custom login form (generated by a plugin) and ...
0
votes
1answer
224 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
76 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
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 which is all we need. I know I can re-style the form generated by ...
1
vote
2answers
210 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
190 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( ...
0
votes
2answers
1k 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
231 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
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
275 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
2answers
767 views
Create Mashable Follow-like Facebook, Twitter login/connect?
Hi want to ask if anyone can share an idea on how Mashable registration works?
Basically the only option you have to register to their site is by Facebook or Twitter, after you login to one of them ...


