Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #510510

    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.

    #511017

    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

    #511062

    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.

    #511079

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘One little bug and a costumization question’ is closed to new replies.