• Resolved chipegoh

    (@chipegoh)


    For some reason my “register” link in the footer doesn’t take the user to a registration form. Instead, it just stays on the login page. Please help.

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Contributor Abdul Wahab

    (@abdulwahab610)

    Hi, @chipegoh

    LoginPress works on the WordPress default login page i.e: https://metromission.church/wp-login.php Here I see that you turned off the default registration form and created custom register page.
    When I go to https://metromission.church/wp-login.php?action=register it redirects me to custom page https://metromission.church/register/.

    If you want to use a custom registration page, please change the registration page link from the footer.

    Add the following PHP snippet into child theme’s functions.php

    add_filter( 'register_url', 'change_my_register_url' );
    function change_my_register_url( $url ) {
     if( is_admin() ) {
      return $url;
     }
     return "/register/";
    }

    Thank you.

    Здравствуйте, такая же ошибка, сайт с нуля, ссылка Регистрация не работает

    Thread Starter chipegoh

    (@chipegoh)

    Sorry for the delayed response. Thank you that solved my problem.

    Plugin Contributor Abdul Wahab

    (@abdulwahab610)

    @chipegoh Good to know that your problem is solved.

    @goodboyz Please explain your problem with bit detail, also create a new support ticket for that.

    Thank you.

    HI, I have the same problem than Chipegoh, i.e the footer “subscribe” in the LoginPress login page redirects on the same login page. The link is :
    wp-login.php?redirect_to=”identify”
    In my case I do not have a custom login page. I just would like the subscribe link to go to :
    wp-login.php?action=register
    instead.
    Thank you !

    Sorry I have found the issue: I use WP User Frontend which has a setting which overrides the subscribe redirection. I unchecked the option and it works fine !
    Thanks

    Plugin Contributor Abdul Wahab

    (@abdulwahab610)

    Hey, @macbree

    Good to know that you’ve resolved the issue.
    Please create a new ticket for any further queries.

    Thank you.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Register link not working’ is closed to new replies.