Home / Admin / FES Login Form Redirect
Duplicate Snippet

Embed Snippet on Your Site

FES Login Form Redirect

Add a new tab to the Frontend Submissions vendor dashboard menu.

Code Preview
php
<?php
function custom_fes_login_redirect( $response, $userdata ) {
	$response['redirect_to'] = 'http://google.com/';
	return $response;
}
add_filter( 'fes_login_form_success_redirect', 'custom_fes_login_redirect', 10, 2 );

Comments

Add a Comment