Style wp-login.php to look like the /login/ page

Discussion in 'Subscribely v2 WordPress Theme' started by hschurr, May 13, 2014.

Thread Status:
Not open for further replies.
  1. hschurr

    hschurr Member

    Joined:
    Apr 23, 2014
    Messages:
    79
    Likes Received:
    0
    Location:
    Los Angeles
    How can I get my wp-login.php page to look like the styled login page that the theme defaults to when I logout?

    When I click logout it goes to the correct page.

    When I click login, it goes to the generic page with no header/footer.



     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,
    Do let us know your website link.

    Thanks & Regards
    Gourav Shrivastava
     
  3. hschurr

    hschurr Member

    Joined:
    Apr 23, 2014
    Messages:
    79
    Likes Received:
    0
    Location:
    Los Angeles
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    We have checked your website and it is working fine, I think it is a cache issue, So please check your website in another browser and clear your system cache.This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     
  5. hschurr

    hschurr Member

    Joined:
    Apr 23, 2014
    Messages:
    79
    Likes Received:
    0
    Location:
    Los Angeles
    Hi Gourav
    It only works now because I removed the script that toggles the Log In / Log Out button, and added a Log In button via the WP Menus. Right now the button show Log In regardless of whether the user is logged in or logged out. In addition, the user has to know to go to the WP drop-down to Log Out. It's not user friendly.

    Below is the code I would like to use. It works great on Log Out, but when login is clicked it redirect to the default wp-login.php page, rather than the login page created in the admin.

    add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2);
    function add_login_logout_link($items, $args) {
    ob_start();
    wp_loginout('http://commercialactingclassesonline.com/login/');
    $loginoutlink = ob_get_contents();
    ob_end_clean();
    $items .= '<li>'. $loginoutlink .'</li>';
    return $items;

    }

    If this script cannot be tweaked to work properly, can the wp-login.php page be revised to look the same as the branded login page?

    Thanks
    Hila
     
  6. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello Hila,

    We are looking to this issue. Will reply you as soon as possible.

    Thanks & Regards
    Nitesh Raghuwanshi
     
  7. hschurr

    hschurr Member

    Joined:
    Apr 23, 2014
    Messages:
    79
    Likes Received:
    0
    Location:
    Los Angeles
    Thank you, Nitesh.
     
  8. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
  9. hschurr

    hschurr Member

    Joined:
    Apr 23, 2014
    Messages:
    79
    Likes Received:
    0
    Location:
    Los Angeles
    Hi Nitesh
    Can you tell me which files were revised? I have create a child theme but it only has a style.css in the directory. If I move the files I changed to the child theme than they will overwrite your updates.

    Am I going to have to redo my customization on this new version before I can create a child theme?
     
  10. hschurr

    hschurr Member

    Joined:
    Apr 23, 2014
    Messages:
    79
    Likes Received:
    0
    Location:
    Los Angeles
    Hi Nitesh
    This issue has NOT been resolved with the updated version. Please visit my site http://commercialactingclassesonline.com/ and click on the Login link. You will see that the page is missing header/footer (and also the register form).
     
  11. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    I think last update not updated your plugin. Mailing you "InkMember" plugin. Delete current plugin and activate latest one.

    Thanks & Regards
    Nitesh Raghuwanshi
     
  12. hschurr

    hschurr Member

    Joined:
    Apr 23, 2014
    Messages:
    79
    Likes Received:
    0
    Location:
    Los Angeles
    This, unfortunately, did not resolve my issue.
     
  13. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Please check your site.
    All is fine now.

    Thanks & Regards
    Nitesh Raghuwanshi
     
  14. hschurr

    hschurr Member

    Joined:
    Apr 23, 2014
    Messages:
    79
    Likes Received:
    0
    Location:
    Los Angeles
    Looks fantastic. I really appreciate your assistance. :)
     
Thread Status:
Not open for further replies.

Share This Page