Add a link to header logo

Hi,

how can I add a link to the header logo?

If someone cklicks it, he should be redirected to https://stein-experte.de/collections/all

kind regards

Karsten

1 Like

I think you have to edit in code for this.

@kschulze
It can be done by editing theme code. Do let me know if you need assistance.

Your sections/header.liquid should have a line like this:


similar to https://github.com/Shopify/dawn/blob/9.0.0-release-branch/sections/header.liquid#L439

change it to


Hello @kschulze

Find your header.liquid (or header section file) inside your Shopify theme.

Look for the logo code — it usually looks something like this:

{% if settings.logo %}
  
{% endif %}

Wrap that img inside an tag like this:

{% if settings.logo %}
  [
    
  ](https://stein-experte.de/collections/all)
{% endif %}
1 Like