• When running WordPress from a subfolder ( explained here: http://codex.ww.wp.xz.cn/Giving_WordPress_Its_Own_Directory )
    your login form won’t work. instead it sends you to ../subfolder/wp-login.php and you have to login from there.

    That issue comes from line 91 in tabbed-login.php:
    <form method="post" action="<?php bloginfo('url') ?>/wp-login.php" class="wp-user-form">

    Can you update that part of code so that your plugin is usable for websites that are running in subfolders?

    otherwise i have to update that part of code every time you update your plugin.

    thanks

    http://ww.wp.xz.cn/plugins/tabbed-login/

Viewing 2 replies - 1 through 2 (of 2 total)
  • afr0,

    were you able to get this remedied? I’m looking to use this plugin in a subfolder WordPress install as well.

    Peter.

    Thread Starter afr0

    (@afr0)

    Hi Peter,
    sorry for the late reply.
    I changed the line as followed:
    <form method="post" action="<?php echo home_url(); ?>/wp-login.php" class="wp-user-form">
    That worked for me.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Issue with login form when using wordpress from subfolder’ is closed to new replies.