Archived topic
Logo logout
7 replies · Started by Carsten on March 29, 2019
Hi there, when I hit the logo, I'm logged out?
I can't find any redirection settings for the logo?
Regards
Carsten
Hi there,
The logo just takes you to your homepage.
Maybe there's some sort of caching going on? Or something with your cookies? Does it consistently happen even when you clear your browser cache/cookies?
Hi, I don't think it's a cache cookie thing, because it does it on all platforms, also on iPhone, but not in my app theme on the phone. This is why I think it is theme related.
Regards
Carsten
Hi again
I have found out that it can't be theme related after all, but caused by some kind of periodic conflict caused by a combination of deactivating/activating certain plugins.
But thanks for your help anyway.
Regards
Carsten
Btw, is it possible to make a link option in the customizer for the logo, so it won't take you to the frontpage, but to another page or no were?
I mean, it makes no sense for logged in users to go to the frontpage again.
Regards
Carsten
You can change where the logo links to with a filter.
For example:
add_filter( 'generate_logo_href', function() {
return 'YOUR CUSTOM URL HERE';
} );
Adding PHP: https://docs.generatepress.com/article/adding-php/
I ended up tweaking php code in an inc folder file header.php but this is much easier, I will implement. Thanks
Awesome :)