Hi.
I have a store with one brand in one design. I want to add two other brands in the same store, set as a category, but when you are in one of these collections, the header image, header color, footer color and menu should be a diffrent one.
So I basicly have 3 brands tecnically in one store.
How can I achieve that?
Thank you.
1 Like
@hakomakotako
that would be greate
yes its possible to make different header, footer customization code
Hi @hakomakotako ,
Yes, we can achieve this.
Step-1: You can assign vendor(brands) for all three types of products
Step-2: Create three different collections with vendor condition
- ‘Product vendor’ is equal to ‘YOUR_BRAND’
Step-3: Create three diffrent collection template for each of them
- Add design whatever you want for them in all three different templates
For different header & all, You can add template condition like i have shown in below code snippet
{% if template.name == 'COLLECTION_TEMPLATE_NAME' %}
{% section 'header_FOR_FIRST_BRAND' %}
{% elsif template.name == 'COLLECTION_TEMPLATE_NAME2' %}
{% section 'header_FOR_SECOND_BRAND' %}
{% elsif template.name == 'COLLECTION_TEMPLATE_NAME2' %}
{% section 'header_FOR_THIRD_BRAND' %}
{% else %}
{% section 'header_DEFAULT' %}
{% endif %}
You can add same conditions for other sections well(I.E. header, footer, images, etc.)
So using above solution, you can manage each of them
Like if it works, Have a good day. 
2 Likes