- {% style %}
- #shopify-section-announcement-bar > div{
- background-color: #e6e6e4 !important;
- border-color: #e6e6e4 !important;
- }
- #shopify-section-announcement-bar > div > a > p{
- color: #000 !important;
- }
- div.center.collection__view-all > a.button,
- button.shopify-payment-button__button--unbranded{
- color: #FFF !important;
- }
- {%endstyle%}
- <button
- type="submit"
- name="add"
- class="product-form__submit button button--full-width {% if block.settings.show_dynamic_checkout and product.selling_plan_groups == empty %}button--secondary{% else %}button--primary{% endif %}"
- {% if product.selected_or_first_available_variant.available == false %}disabled{% endif %}
- >
- <span >
- {%- if product.selected_or_first_available_variant.available -%}
- {{ 'products.product.add_to_cart' | t }}
- {%- else -%}
- {{ 'products.product.sold_out' | t }}
- {%- endif -%}
- </span>
- <div class="loading-overlay__spinner hidden">
- <svg aria-hidden="true" focusable="false" role="presentation" class="spinner" viewBox="0 0 66 66" >
- <circle class="path" fill="none" stroke-width="6" cx="33" cy="33" r="30"></circle>
- </svg>
- </div>
- </button>
- [removed]
- const fotoClick = (e) => {
- const alt = e.parentElement.getElementsByTagName("img")[0].alt
- if (alt && alt !==""){
- [removed].href = alt;
- }
- }
- [removed]
- -----------------------------------slideshow.liquid
- <div
- class="slideshow__text-wrapper banner__content banner__content--{{ block.settings.box_align }} page-width{% if block.settings.show_text_box == false %} banner--desktop-transparent{% endif %}">
- ------------------------------------card-liquid
- <div class="card__badge {{ settings.badge_position }}">
- {%- if card_product.available == false -%}
- <span id="NoMediaStandardBadge-{{ section_id }}-{{ card_product.id }}" class="badge badge--bottom-left color-{{ settings.sold_out_badge_color_scheme }}">{{ 'products.product.sold_out' | t }}</span>
- {%- elsif card_product.compare_at_price > card_product.price and card_product.available -%}
- {% comment %}
- Karel heeft dit aangepast op 14 april, om het woord 'aanbieding' naar -10% te veranderen
- <span id="NoMediaStandardBadge-{{ section_id }}-{{ card_product.id }}" class="badge badge--bottom-left color-{{ settings.sale_badge_color_scheme }}">{{ 'products.product.on_sale' | t }}</span>
- {% endcomment %}
- <span id="NoMediaStandardBadge-{{ section_id }}-{{ card_product.id }}" class="badge badge--bottom-left color-{{ settings.sale_badge_color_scheme }}">
- -{{ card_product.compare_at_price_max | minus: card_product.price | times: 100.0 | divided_by: card_product.compare_at_price_max | money_without_currency | times: 100 | remove: '.0'}}%
- </span>
- {%- endif -%}
- </div>
- --------------cart-drawer.liquid
- <p class="totals__subtotal-value"><span class="csapps-cart-original-total">{{ cart.total_price | money_with_currency }}</span></p>
- -------------price.liquid
- {%- if show_badges -%}
- {% comment %}
- Karel heeft dit aangepast op 14 april, om het woord 'aanbieding' naar -10% aanbieding te veranderen
- <span class="badge price__badge-sale color-{{ settings.sale_badge_color_scheme }}">
- {{ 'products.product.on_sale' | t }}
- </span>
- {% endcomment %}
- <span class="badge price__badge-sale color-{{ settings.sale_badge_color_scheme }}">
- -{{ product.compare_at_price_max | minus: product.price | times: 100.0 | divided_by: product.compare_at_price_max | money_without_currency | times: 100 | remove: '.0'}}%
- {{ 'products.product.on_sale' | t }}
- </span>
- <span class="badge price__badge-sold-out color-{{ settings.sold_out_badge_color_scheme }}">
- {{ 'products.product.sold_out' | t }}
- </span>
- {%- endif -%}