Description
Filter the URL the user is redirected to after being automatically logged in.
Usage
add_filter( 'gpal_auto_login_on_redirect_redirect_url', 'my_custom_function' );
Parameters
redirect_url string
URL to redirect the user to.
user_id string
ID of the user that’s about to be logged in.
Examples
Redirect automatically logged in users to a custom page.
add_filter( 'gpal_auto_login_on_redirect_redirect_url', function( $redirect_url ) {
return 'https://mydomain.com/custom_page';
} );
Since
This filter is available since Gravity Forms Auto Login 1.2.