Wokiee + Flair Shopify theme guide

By: p-themes
We've put together this guide for setting up Flair in the Wokiee Shopify theme by p-themes. This page includes instructions for setting up Flair badges (aka labels or stickers) and Flair banners.
Heads up! This guide is for Flair Gen 2. For assistance with Flair Gen 3 (now in early access), please contact support.

How to edit your theme

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

Install Flair product badges

On product pages

Edit snippets/product_page_1_description.liquid:

<h1 class="tt-title" itemprop="name">{{ product.title }}</h1>
<div data-flair-product-badge data-product-id={{ product.id }}></div>

And add line 2.

On collection pages

Edit snippets/product-grid-item-design-1.liquid:

<h2 class="tt-title prod-thumb-title-color">
<a href="{{ product.url | within: collection }}">
{%- if settings.truncate_product_title -%}
{{ product.title | strip_html | truncatewords: settings.truncate_product_title_w, settings.truncate_product_title_s }}
{%- else -%}
{{ product.title }}
{%- endif -%}
</a>
</h2>
<div data-flair-product-badge data-product-id={{ product.id }}></div>

And add line 10.

Install Flair banners

Edit layout/theme.liquid:

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

And add line 2.

Additional Resources

  • Flair badge layout guide - additional badge options including: multi-promotions, multiple badges, spacing and alignment, variant badges, and more
  • Flair banner layout guide - additional banner options including: multi-promotions, spacing, and more