Hi
I followed your tips which I find here and works great but I need to remove link from woocomerce page also.
How I can do that?
Or maybe I can redirect user to another page after they login?
BR
Krzysztof
Hey!
Please use the code as following
.woocommerce .logo { pointer-events: none !important; }
Regards,
Yigit
HI
thank you but logo link still works on account page and another after use login into their account
Hi!
Can u send us links of Login & My Account page cause we do not get all the site language.
Thanks a lot
Best regards,
Basilis
Hi
Thank you for response. Please find url and credentials in private area
BR
Krzysztof
Hi!
Please use the code as following
.woocommerce-page .logo, .woocommerce .logo, .page-id-3328 .logo { pointer-events: none !important; }
Cheers!
Yigit
Thank you a lot.
What I can do with another page e.g https://inwazja.info/premium-tworze/ should I add all step by step with page ID, it is a lot of pages.
Maybe easier way is to can change url from logo for user who are log in?
BR
Krzysztof
Hey!
Please add following code to Functions.php file in Appearance > Editor to change logo link for logged in users
add_filter('avf_logo_link','av_change_logo_link');
function av_change_logo_link($link)
{
if ( is_user_logged_in() ) {
$link = "http://kriesi.at";
}
return $link;
}
Cheers!
Yigit
Hi
Thank you, it was the best solution
Thank you again
BR
Krzysztof
Hi!
You are welcome!
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)
Regards,
Yigit