Hello,
I have a one page site here : http://www.zebre-traiteur.com
When clicking “Nos Formules” in the top right menu, the page goes to the right anchor, but the menu item is not underlined. With the other menu elements it’s ok, but with “Nos Formules” it’s not. Thank you.
I would also like to change the top left logo link to go to http://www.zebre-traiteur.com/#top, in order to avoid reloading the page when clicking it.
Thank you.
Hey!
1. Have you tried disabling all third-party plugins to see if it gets fixed?
2. Try adding this to theme / child theme functions.php:
add_filter('avf_logo_link', 'avf_redirect_logo_link');
function avf_redirect_logo_link($link) {
$link = 'http://www.zebre-traiteur.com/#top';
return $link;
}
Best regards,
Josue
2. Worked great. Just perfect. Thank you.
1. In deed, by deactivating the cache plugin WP Rocket, it went ok again. Then I reactivated each option one after the other. It seems the bug comes from the minification of inline JS. I deactivated this option and it’s ok.
Great support.
Thank you.
You are welcome, glad to help :)
Regards,
Josue