• Resolved hrutheone

    (@hrutheone)


    After registering, the website does not refresh and the registration status is not reflected on the page.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter hrutheone

    (@hrutheone)

    Just found solution, look like I need to enable password field on registration form.
    Is there anyway to make it refresh without password field?

    Plugin Author xootix

    (@xootix)

    Redirection gets disabled if there is no password field. It is done so that users get enough time to read the success message about password.
    You can force redirect using this snippet

    add_filter( 'xoo_el_registration_redirect', function( $redirect ){
                                                                                    if( $redirect ) return $redirect;
                                                                                    return wp_sanitize_redirect( $_POST['xoo_el_redirect'] );
                                                                    } );
    
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘How to refresh active page after registration?’ is closed to new replies.