• Hello.

    Could you please help me? I urgently need help.

    I have an ascend theme and I don’t know how to change the Logo URL. Now when I click on the logo, it is set to “home”. But I want that when I click on the logo, it fits me on “about us” (https://lankwitzer.sk/o-nas/)

    Can you help me with that? I would be very grateful

    Thank you so much.

    Tomas

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hey,
    First, I strongly recommend you do not do this. It’s against web standards, logos always go to the home page and changing that can greatly confuse your viewers.

    If you are going to do it anyway then you need to use a child theme and add a filter to the functions.php file of your child theme. The filter would look like this:

    add_filter( 'ascend_logo_link', 'custom_logo_link' );
    function custom_logo_link( $link ) {
    return 'https://lankwitzer.sk/o-nas/';
    }

    Ben

Viewing 1 replies (of 1 total)
  • The topic ‘Change Logo URL’ is closed to new replies.