Redirect after login

This topic contains 4 reply and 3 voices, and was last updated by Khandaker 8 years, 11 months ago
Viewing 4 Posts - 1 through 4 (of 4 total)
Author Posts
May 17, 2015 at 4:42 pm 44231
Khandaker Hi I would like to redirect users to the dashboard after login i saw this solution but this is for Dokan https://wedevs.com/support/topic/redirect-sellers-to-dashboard-when-logging-in/#post-42920 anything similar for WPUF ? Tx Alex
May 17, 2015 at 5:11 pm 44243
Nayem Nayem

Yes, you can redirect your user after login. Please insert those code into your theme’s function.php file-

add_filter('wpuf_login_redirect', 'login_redirect');
function login_redirect($redirect){

 $redirect =	home_url('/your own page') ; 
return $redirect;
}

Thanks.

May 17, 2015 at 5:19 pm 44247
Alexandre Alexandre

Hi Nayem

Tx a lot

it works like a charm !

May 17, 2015 at 5:36 pm 44254
Nayem Nayem

Hello Alexandre,

I am very glad to know that. I am marking this topic as resolved.

May 26, 2015 at 8:13 pm 45237
Khandaker Khandaker

Great it is working. Thanks Nayem vai

Viewing 4 Posts - 1 through 4 (of 4 total)