Hello, so I am trying to make the logo of the store change when you load up a specific page. Is this possible? Example video here. Thanks.
@Noblec you can add custom code conditions in theme.liquid to add an alternate header for a specific template, something like this, if you want further customization you may also move this condition within the header section and add a setting to pick up another image as an alternate logo
{% if template.name != "index" %}
//show one logo
{% else %}
// show other logo
{% endif %}