• I have seen a post from 9 months ago. It was not actually resolved.

    So if you can write some code here it is an example (this is only for developer use that can understand the below code):

    function my_login_redirect_jquery() {
        if ( is_page('login') && $_GET['redirect_to']) { // change the login to fit your needs
          ?>
          <script type="text/javascript">
          jQuery( document ).ready(function() {
            jQuery('#login_div input[name="redirect_to"]').val('<?php echo $_GET['redirect_to']; ?>');
          });
          </script>
          <?php
        }
    
    }
    add_action('wp_footer', 'my_login_redirect_jquery');
    
    function my_login_redirect() {
      if ( $_POST['redirect_to']) {
        wp_safe_redirect( $_POST['redirect_to'] );
        exit();
      }
    
    }
    add_action('wp_login', 'my_login_redirect');

    ATTTENTION :
    The user must have redirect_to as GET before submitting his username and password for logging in.

    Regards,
    Spyros

    https://wordpress.org/plugins/wp-user-control/

  • The topic ‘Redirect user after login resolved’ is closed to new replies.