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
<div> | |
<h3 style="text-align: center; font-style: normal; margin-bottom: 32px;"><strong>Customer Reviews</strong></h3> | |
{% for testimonial in feeds.JudgemeReviewTestimonialsFeed.testimonials %} | |
{% if testimonial.rating == 5 %} | |
<div style="margin-bottom: 32px;"> | |
<div style="text-align: center; font-style: normal; font-weight: normal; margin-bottom: 8px;">{{ testimonial.content|truncatewords:140 }}</div> | |
<div style="text-align: center; color: #FFBA00; margin-bottom: 8px;">★★★★★</div> | |
<div style="text-align: center; font-style: normal; font-weight: normal; margin-bottom: 4px;"><strong>{{ testimonial.author_name }}</strong></div> | |
<div style="text-align: center;"><a style="font-weight: normal; text-decoration: underline;" href="{{ testimonial.product_url }}" target="_blank" rel="noopener"> {{ testimonial.product_name }} </a></div> | |
</div> |
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
<!-- Tracking Klaviyo Sign-ups in GA4 --> | |
<script> | |
window.addEventListener("klaviyoForms", function(e) { | |
if (e.detail.type == 'open' || e.detail.type == 'embedOpen') { | |
gtag('event', 'klaviyo_form_open', {'form': 'Klaviyo form', 'form_id': e.detail.formId}); | |
} | |
if (e.detail.type == 'submit') { | |
gtag('event', 'klaviyo_form_submit', {'form': 'Klaviyo form', 'form_id': e.detail.formId}); | |
} | |
if (e.detail.type == 'stepSubmit') { |
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
{% comment %} | |
Custom section added by JadePuma | |
Instructions - https://jadepuma.com/blogs/shopify-tutorials/free-gift-with-purchase-cart-promo | |
Last editted - 3Jul23 | |
{% endcomment %} | |
<div style="opacity: 0;">-</div> | |
{% if section.settings.enable_free_gift_promo %} |
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
{% comment %} | |
Custom section added by JadePuma | |
Instructions - https://jadepuma.com/blogs/shopify-tutorials/featured-promotions-grid-layout-for-flex-theme | |
Last editted - 14Aug22 | |
{% endcomment %} | |
{%- assign title = section.settings.title -%} | |
{%- assign blog = blogs[section.settings.blog_widget_select] -%} |
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
{ | |
"sections": { | |
"main": { | |
"type": "page-content__main", | |
"disabled": true, | |
"settings": { | |
"show_heading": true, | |
"heading_alignment": "left", | |
"width": "standard", | |
"padding_top": 40, |
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
{%- assign id = section.id -%} | |
{% comment %} Section specific CSS {% endcomment %} | |
{%- capture section_css -%} | |
.photos { display: flex; flex-direction: row; padding: 10px; flex-wrap: wrap; margin-bottom: 20px; } | |
.photo { display: flex; flex-direction: column; margin: 10px; } | |
.photo div { color: {{ section.settings.text-color }}; } | |
{%- endcapture -%} |
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
<div class="cart__subtotal-container cart__row"> | |
<div class="cart__row-description"> | |
<p class="h3">{{ 'cart.general.subtotal' | t }}:</p> | |
</div> | |
<p class="h3 cart__subtotal"> | |
<span class="money"> | |
{% | |
render 'price-element', | |
price: cart.total_price | |
%} |
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
{% comment %} * * * Automatic Discounts & Gifts App * * * {% endcomment %} | |
<div data-tbnadhide='NO_DISCOUNT'> | |
<div class="cart__subtotal-container cart__row"> | |
<div class="cart__row-description"> | |
<p class="h3">Savings:</p> | |
</div> | |
<p class="h3 money cart__subtotal savings"> | |
-<span class="h3 money savings" data-tbnadfield='CART_DISCOUNT' data-tbnaddefault=''></span> |
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
.show-mobile { display: none; } | |
.show-desktop { display: block; } | |
@media screen and (max-width: 798px) { | |
.show-mobile { display: block; } | |
.show-desktop { display: none; } | |
} |
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
{ | |
"sections": { | |
"main": { | |
"type": "page-content__main", | |
"disabled": true, | |
"settings": { | |
"show_heading": true, | |
"heading_alignment": "left", | |
"width": "standard", | |
"padding_top": 40, |
NewerOlder