Hi,
how do i have to change the code to get one logo for the header at homepage and a different one for the header at collection sites?
Im using the debut design. The code underneath is taken from header.liquid.
Please help!
{% comment %}
Use the uploaded logo from theme settings if enabled.
Site name gets precedence with H1 tag on homepage, div on other pages.
{% endcomment %}
{% if request.page_type == 'index' %}
#
{% else %}
{% endif %}
{% if section.settings.logo %}
{%- assign img_url = section.settings.logo | img_url: '1x1' | replace: '_1x1.', '_{width}x.' -%}
{% capture logo_alt %}{{ section.settings.logo.alt | default: shop.name }}{% endcapture %}
{% else %}
{{ shop.name }}
{% endif %}
{% if request.page_type == 'index' %}
{% else %}
{% endif %}