Add Flair to Expanse Shopify themes

By: Archetype Themes
This guide includes instructions for setting up Flair badges and Flair banners in the Expanse Shopify theme made by Archetype Themes.

How to edit your theme

  • Visit Shopify Admin > Themes and click ... > Edit code.

Add Flair badges

On collection pages

  • Open snippets/product-grid-item.liquid.

  • Find the line containing:

    {%- if vendor_enable -%}
  • And add this before it:

    Flair Gen 3
    <flair-badges product-id="{{ product.id }}"></flair-badges>
    Flair Gen 2
    <div data-flair-product-badge data-product-id="{{ product.id }}"></div>
  • Click Save.

On product pages

  • Open snippets/block-title.

  • Find the line containing:

    </h1>
  • And add this after it:

    Flair Gen 3
    <flair-badges product-id="{{ product.id }}"></flair-badges>
    Flair Gen 2
    <div data-flair-product-badge data-product-id="{{ product.id }}"></div>
  • Click Save.

Resources