Vantage + Flair Shopify theme guide

By: We are Underground
We've put together this guide for setting up Flair in the Vantage Shopify theme by We are Underground. This page includes instructions for setting up Flair badges (aka labels or stickers) and Flair banners.

How to edit your theme

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

Install Flair product badges

On product pages

Edit snippets/product-form.liquid:

<div data-flair-product-badge data-product-id={{ product.id }}></div>
<h5 id="product-price" class="clearfix">

And add line 1.

On collection pages

Edit snippets/product-listing.liquid:

<h3 class="product-title h5">
<a href="{{ product.url | within: collection }}">
{{ product.title }}
</a>
</h3>
<div data-flair-product-badge data-product-id={{ product.id }}></div>

And add line 6.

Install Flair banners

Edit layout/theme.liquid:

<body>
<div data-flair-banner></div>

And add line 2.

Additional Resources