Please add this code to your Child Theme functions.php file (read more about child themes here) and change https://google.com/ link to your own link

add_filter('vehica/login/redirectUrl', function() {
return 'https://google.com';
});

 

Since Vehica – 1.0.57 – If you use Social Login and Registration, to affect this kind of access please configure:

add_filter('vehica/socialAuth/redirectUrl', function() {
return 'https://page_for_people_who_just_registered_via_social.com';
});

add_filter('vehica/socialAuth/registered/redirectUrl', function() {
return 'https://page_for_all_next_entrace_via_facebook_or_google.com';
});