Reply 326435 to: how can i change account redirection on Header ?

Avatar: Rose Tyler
Rose Tyler
Support staff
June 21, 2022 at 08:25

Hello,

if you want to hardcode redirect to another url different from your origin web-site then you may use next snippet

add_filter('header_account_link', function($url) {
return "https://tomoo7.com/dashboard/";
});

Otherwise if you want to redirect to ‘dashboard’ but on your web-site then

add_filter('header_account_link', function($url) {
return home_url('/dashboard/');
});

WordPress documentation: https://developer.wordpress.org/reference/functions/home_url/

Regards

Go To The Whole Conversation In Topic
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.