This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {%- if cart.taxes_included -%} | |
| <p class="taxes-included-message" style="padding-bottom: 10px;"> | |
| {{ 'cart.general.shipping_at_checkout' | t }} | |
| </p> | |
| {%- endif -%} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <fieldset class="radio__fieldset" style="margin-bottom: 12px;"> | |
| <legend class="radio__legend" aria-label="{{ 'home_page.onboarding.color' | t }}"> | |
| <span class="radio__legend__label">{{ 'home_page.onboarding.color' | t }}</span> | |
| </legend> | |
| {% for color_item in product.metafields.shopify.color-pattern.value %} | |
| {% if color_item %} | |
| <radio-swatch class="swatch__button{% if settings.swatches_squares %} swatch__button--square{% endif %}"> | |
| <label {% if color_item.color != null %} data-swatch style="--swatch: {{ color_item.color }}"{% endif %}> | |
| {% if color_item.image %} | |
| {% render 'image', img_object: color_item.image.value, width: 34, wh_ratio: 1 %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| from bs4 import BeautifulSoup, Tag | |
| import csv | |
| import re | |
| from urllib.parse import urljoin | |
| from typing import List, Dict, Optional | |
| # Configuration | |
| BASE_URL = "https://pipeline.groupthought.com/" | |
| HEADERS = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* CSS - change Add to Cart button color */ | |
| .product__form--buybutton .product__submit__add { | |
| background-color: var(--primary); | |
| border: 1px solid var(--primary); | |
| color: var(--primary-opposite); | |
| } | |
| .product__form--buybutton .product__submit__add:hover, | |
| .product__form--buybutton .product__submit__add:focus { | |
| background-color: var(--primary-hover); | |
| border: 1px solid var(--primary-hover); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data-section-id="{{ section.id }}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- /snippets/product-siblings.liquid --> | |
| {%- liquid | |
| assign sibs_collection = collections[block.settings.siblings_collection].products | |
| assign cutline_default = block.settings.cutline | default: product.metafields.theme.cutline.value | |
| assign old_siblings_label = 'general.siblings.label' | t | default: 'Color' | |
| assign siblings_label = block.settings.cutline_label | default: old_siblings_label | |
| -%} | |
| {%- if sibs_collection.size > 1 -%} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var links = document.links; | |
| for (let i = 0, linksLength = links.length ; i < linksLength ; i++) { | |
| if (links[i].hostname !== window.location.hostname) { | |
| links[i].target = '_blank'; | |
| links[i].rel = 'noreferrer noopener'; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media only screen and (max-width: 767px) { | |
| .product__inner { | |
| display: grid; | |
| grid-template-areas: | |
| "title" | |
| "price" | |
| "variants" | |
| "quantity" | |
| "remaining" | |
| "buttons" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a.klaviyo-bis-trigger { | |
| background-color: var(--COLOR-PRIMARY); | |
| border: 1px solid var(--COLOR-PRIMARY); | |
| color: var(--COLOR-PRIMARY-OPPOSITE); | |
| font-style: var(--FONT-STYLE-ACCENT); | |
| text-transform: uppercase; | |
| font-weight: var(--FONT-WEIGHT-ACCENT-BOLD); | |
| font-style: calc(var(--font-3)*var(--FONT-ADJUST-ACCENT)); | |
| font-family: Sohne Breit,helvetica,sans-serif; | |
| letter-spacing: .24em; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* CSS - Change background color of block variants container */ | |
| .product__block__variants{ | |
| background-color: #513f76; | |
| padding: 10px; | |
| border-radius: 15px; | |
| --text: #fff; | |
| --text-light: var(--text); | |
| } | |
| .radio__legend, | |
| .radio__legend__label{ |