• This plugin isn’t logging me in when I enter my username and password. Instead it’s taking me to the log-in page. If I enter my username and password in the log-in box on the page it does log me in but not through the header widget. I have tried reading others questions but haven’t found a way to make it work.

    aviationinfluence.com

    http://wordpress.org/plugins/wp-login-box/

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter weezieb

    (@weezieb)

    The problem seems to be a conflict with the theme my login plugin. I’d like to use both so if you have suggestions let me know. thanks.

    wp-login-box/out.php

    <input type=’submit’ name=’wp-submit‘ class=’wplb_button’ id=’wp-submit‘ value='<?php echo $logintext; ?>’ />

    you can change with the values of your theme.

    I had the same issue.

    In the plugin file “wp-login-box/out.php” change the form action method to match the action method of the theme my login.

    For example my form action is /login/
    <form name='loginform' id='loginform' action='<?php echo $home; ?>/login/' method='post'>

    Thread Starter weezieb

    (@weezieb)

    Great! It worked! Thank you both! I used the change sent by Jeremy. Awesome. Thank you very much!

    Thread Starter weezieb

    (@weezieb)

    Adding another note here in case someone needs it- I also had to edit the out.php file in the widgets folder- plugin file “wp-login-box/widget/out.php”.

    In out.php
    remark
    <!– <form name=’loginform’ id=’loginform’ action='<?php echo $home; ?>/wp-login.php’ method=’post’> –>
    replace with
    <form name=’loginform’ id=’loginform’ action='<?php echo $redirect; ?>’ method=’post’>

    with $redirect; you will go to any url.
    But how to get back I don’t know !
    Who does know ?
    thank in advance

    Forget my last respond.
    “”In out.php
    remark””

    i installed same plugin on my site … i have added short code on home page to display login box ..but login not working from home page but same login credentails working from by default /wp-admin… need ur urgent assistant please

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Not logging in’ is closed to new replies.