{% comment %}theme-check-disable TemplateLength{% endcomment %} {{ 'section-main-product.css' | asset_url | stylesheet_tag }} {{ 'component-price.css' | asset_url | stylesheet_tag }} {{ 'component-facets.css' | asset_url | stylesheet_tag }} {{ 'component-rating.css' | asset_url | stylesheet_tag }} {{ 'component-pills.css' | asset_url | stylesheet_tag }} {{ 'component-tabs.css' | asset_url | stylesheet_tag }} {{ 'component-tooltip.css' | asset_url | stylesheet_tag }} {% if product.media.size > 0 %} {{ 'flickity.css' | asset_url | stylesheet_tag }} {% endif %} {% liquid assign first_3d_model = product.media | where: 'media_type', 'model' | first assign product_form_id = 'product-form-' | append: section.id assign variant_images = product.images | where: 'attached_to_variant?', true | map: 'src' # 2 Product page templates: 3 columns and 2 columns assign is_page_expanded = true if product.template_suffix contains 'two-columns' or section.settings.default_layout == 'two_columns' assign is_page_expanded = false endif assign preorderSuffixArray = product.template_suffix | split: 'pre-order-' assign is_pre_order = false if product.template_suffix != blank and preorderSuffixArray[0] == blank or product.template_suffix == 'pre-order' assign is_pre_order = true endif %} {%- if first_3d_model -%} {%- endif -%}
{% if product.media.size > 0 %} {% endif %}
{% for block in section.blocks %} {% case block.type %} {% when '@app' %}
{% render block %}
{%- when 'text' -%} {% if block.settings.text != blank or block.settings.text_2 != blank or block.settings.text_3 != blank or block.settings.text_4 != blank %}
{% if block.settings.text != blank %}
{% if block.settings.icon != blank %} {% render 'icons', icon: block.settings.icon %} {% endif %} {{ block.settings.text }}
{% endif %} {% if block.settings.text_2 != blank %}
{% if block.settings.icon_2 != blank %} {% render 'icons', icon: block.settings.icon_2 %} {% endif %} {{ block.settings.text_2 }}
{% endif %} {% if block.settings.text_3 != blank %}
{% if block.settings.icon_3 != blank %} {% render 'icons', icon: block.settings.icon_3 %} {% endif %} {{ block.settings.text_3 }}
{% endif %} {% if block.settings.text_4 != blank %}
{% if block.settings.icon_4 != blank %} {% render 'icons', icon: block.settings.icon_4 %} {% endif %} {{ block.settings.text_4 }}
{% endif %}
{% endif %} {% when 'title' %}
{% comment %} Custom badges (e.g. the lead-time badge) and the stock status badge sit together in one row above the title. The stock badge previously lived in the meta row below the title; #ProductAvailability-{{ section.id }} must keep its id - scripts.js swaps its innerHTML on variant change. {% endcomment %} {% if block.settings.show_custom_badges or block.settings.show_stock %}
{% if block.settings.show_custom_badges %} {% render 'card-product-custom-badges', product: product, class: 'product-info-badges' %} {% endif %} {% unless settings.catalog_enabled %} {% if block.settings.show_stock %}
{% render 'product-availability', product: product %}
{% endif %} {% endunless %}
{% endif %} {% if block.settings.show_vendor and product.vendor != blank %} {% liquid assign matching_collection = false assign vendor_handle = product.vendor | handleize for collection in product.collections if collection.handle == vendor_handle assign matching_collection = true endif endfor %}
{% if matching_collection %} {{- product.vendor -}} {% else %} {{ product.vendor | link_to_vendor }} {% endif %}
{% endif %}

{{ product.title | escape }}

{% liquid assign product_info_meta_stretch_class = '' if product.selected_or_first_available_variant.barcode and block.settings.show_barcode and product.selected_or_first_available_variant.sku and block.settings.show_sku assign product_info_meta_stretch_class = 'product-info-meta-stretch' endif %} {% comment %} show_stock moved to the badges row above the title {% endcomment %} {% if block.settings.show_sku or block.settings.show_barcode or block.settings.show_rating %}
{% if block.settings.show_sku %} {% if product.selected_or_first_available_variant.sku != blank %} {{ 'products.product.sku' | t }}: {{- product.selected_or_first_available_variant.sku -}} {% endif %} {% endif %} {% if block.settings.show_barcode %} {% if product.selected_or_first_available_variant.barcode != blank %} {% if block.settings.barcode_label != blank %} {{ block.settings.barcode_label }}: {% endif %} {{- product.selected_or_first_available_variant.barcode -}} {% endif %} {% endif %} {% if block.settings.show_rating %}
{% render 'product-rating-widget', product: product %}
{% endif %}
{% endif %}
{%- when 'price' -%} {% unless settings.catalog_enabled %}
{%- capture login_for_price -%}{%- render 'price-get-login-for-price', product: product -%}{%- endcapture -%} {%- assign login_for_price = login_for_price | strip -%} {% if login_for_price == 'true' %}
{% render 'price-login-for-price' %}
{% else %}
{% render 'price', product: product, discount_badge: true, use_variant: true %}
{%- form 'product', product, id: 'product-form-installment', class: 'installment', data-event-context: 'MainProductPageInstallment' -%} {{ form | payment_terms }} {%- endform -%} {% endif %}
{% endunless %} {%- when 'variants' -%} {% render 'product-variant-picker', section: section, block: block, product: product, product_form_id: product_form_id, update_url: true %} {% when 'buy_buttons' %} {% unless settings.catalog_enabled %} {%- capture login_for_price -%}{%- render 'price-get-login-for-price', product: product -%}{%- endcapture -%} {%- assign login_for_price = login_for_price | strip -%} {% if login_for_price != 'true' %} {%- liquid assign gift_card_recipient_feature_active = false if block.settings.show_gift_card_recipient and product.gift_card? assign gift_card_recipient_feature_active = true endif assign show_dynamic_checkout = false if block.settings.show_buy_now and gift_card_recipient_feature_active == false and is_pre_order == false assign show_dynamic_checkout = true endif -%} {% form 'product', product, id: product_form_id, class: 'form', novalidate: 'novalidate', data-type: 'add-to-cart-form', data-stock-threshold: settings.only_x_left, data-event-context: 'MainProductPage' %} {%- if gift_card_recipient_feature_active -%} {%- render 'gift-card-recipient-form', product: product, form: form, section: section -%} {%- endif -%}
{%- if block.settings.show_quantity -%} {%- endif -%} {%- if block.settings.show_add_to_cart -%} {%- endif -%}
{% if show_dynamic_checkout and block.settings.show_add_to_cart == false %}
{{ form | payment_button }}
{% endif %} {% if show_dynamic_checkout and block.settings.show_add_to_cart %}
{{ form | payment_button }}
{% endif %}
{% endform %}
{% endif %} {% endunless %} {% when 'availability' %} {% unless settings.catalog_enabled %} {{ 'component-drawer.css' | asset_url | stylesheet_tag }} {%- assign pick_up_availabilities = product.selected_or_first_available_variant.store_availabilities | where: 'pick_up_enabled', true -%} 0 %} available {% endif %} data-root-url="{{ routes.root_url }}" data-variant-id="{{ product.selected_or_first_available_variant.id }}" data-has-only-default-variant="{{ product.has_only_default_variant }}" {{ block.shopify_attributes }} > {% endunless %} {% when 'request_information' %} {% render 'main-product-request-information', product: product, settings: block.settings, block: block %} {%- when 'complementary' -%} {%- if recommendations.performed and recommendations.products_count > 0 -%}

{{ block.settings.title | escape }}

{%- for recommendation in recommendations.products -%}
{% render 'card-product-media', card_product: recommendation, show_vendor: block.settings.show_vendor, show_stock: false, show_rating: block.settings.show_rating, show_add_to_cart: block.settings.show_add_to_cart, class: 'color-background-2' %}
{% endfor %}
{%- endif -%}
{%- when 'custom_liquid' -%} {% liquid if block.settings.position != 'info' continue endif %} {% capture liquid_output %}{{ block.settings.custom_liquid }}{% endcapture %} {% if liquid_output != blank %}
{% if block.settings.title != blank or block.settings.icon != blank %}

{% if block.settings.icon != blank %} {% render 'icons', icon: block.settings.icon %} {% endif %} {{ block.settings.title }}

{% endif %} {{ block.settings.custom_liquid }}
{% endif %} {%- when 'details' -%} {% liquid if block.settings.position == 'info' or is_page_expanded == false render 'main-product-details', product: product, block: block endif %} {% when 'extra' %} {% liquid if block.settings.position == 'info' or is_page_expanded == false render 'main-product-extra', product: product, block: block endif %} {% when 'image' %} {% liquid if block.settings.position == 'info' or is_page_expanded == false render 'main-product-image-block', settings: block.settings, block: block endif %} {% when 'info_box' %} {% liquid if block.settings.position == 'info' or is_page_expanded == false render 'main-product-info-box', settings: block.settings, block: block endif %} {% when 'stock_bar' %} {% render 'main-product-stock-bar', product: product, block_settings: block.settings, block: block %} {% when 'product_signup' %} {% liquid assign show_product_signup = true if product.selected_or_first_available_variant.available and block.settings.show_when == 'out_of_stock' assign show_product_signup = false endif %} {% if block.settings.position == 'info' or is_page_expanded == false %} {% endif %} {% when 'product_metadata' %} {% render 'main-product-metadata-block', product: product, settings: block.settings, block: block %} {% endcase %} {% endfor %}
{% if is_page_expanded %}
{% for block in section.blocks %} {% case block.type %} {%- when 'details' -%} {% liquid if block.settings.position == 'details' render 'main-product-details', product: product, block: block endif %} {%- when 'custom_liquid' -%} {% liquid if block.settings.position != 'details' continue endif %} {% capture liquid_output %}{{ block.settings.custom_liquid }}{% endcapture %} {% if liquid_output != blank %}
{% if block.settings.title != blank or block.settings.icon != blank %}

{% if block.settings.icon != blank %} {% render 'icons', icon: block.settings.icon %} {% endif %} {{ block.settings.title }}

{% endif %} {{ block.settings.custom_liquid }}
{% endif %} {% when 'extra' %} {% liquid if block.settings.position == 'details' render 'main-product-extra', product: product, block: block endif %} {% when 'info_box' %} {% liquid if block.settings.position == 'details' render 'main-product-info-box', settings: block.settings, block: block endif %} {% when 'product_signup' %} {% liquid assign show_product_signup = true if product.selected_or_first_available_variant.available and block.settings.show_when == 'out_of_stock' assign show_product_signup = false endif if block.settings.position != 'details' continue endif %} {% when 'image' %} {% liquid if block.settings.position == 'details' render 'main-product-image-block', settings: block.settings, block: block endif %} {% endcase %} {% endfor %}
{% endif %}
{% liquid assign count = 0 %} {% for block in section.blocks %} {% case block.type %} {% when 'custom_liquid' %} {% capture liquid_output %}{{ block.settings.custom_liquid }}{% endcapture %} {% liquid if block.settings.position != 'tab' or liquid_output == blank continue endif %} {% if block.settings.icon != blank %} {% render 'icons', icon: block.settings.icon %} {% endif %} {{ block.settings.title }} {% liquid assign count = count | plus: 1 %} {% when 'description' %} {% if product.description != blank %} {% if block.settings.icon != blank %} {% render 'icons', icon: block.settings.icon %} {% endif %} {{ block.settings.title }} {% liquid assign count = count | plus: 1 %} {% endif %} {% when 'reviews' %} {% if product.metafields.reviews.rating_count != blank %} {% render 'icon-star-full' %} {% else %} {% render 'icon-star-empty' %} {% endif %} {{ 'products.product.reviews' | t }} {% if block.settings.show_count %} {% if product.metafields.reviews.rating_count %} ({{ product.metafields.reviews.rating_count }}) {% else %} (0) {% endif %} {% endif %} {% liquid assign count = count | plus: 1 %} {% when 'tab' %} {% if block.settings.text != blank %} {% if block.settings.icon != blank %} {% render 'icons', icon: block.settings.icon %} {% endif %} {{ block.settings.title }} {% liquid assign count = count | plus: 1 %} {% endif %} {% endcase %} {% endfor %}
{% liquid assign count = 0 %} {% for block in section.blocks %} {% case block.type %} {% when 'custom_liquid' %} {% capture liquid_output %}{{ block.settings.custom_liquid }}{% endcapture %} {% liquid if block.settings.position != 'tab' or liquid_output == blank continue endif %}
{{ block.settings.custom_liquid }}
{% liquid assign count = count | plus: 1 %} {% when 'description' %} {% if product.description != blank %}
{{ product.description }}
{% liquid assign count = count | plus: 1 %} {% endif %} {% when 'reviews' %}
{% render 'product-review-widget' %}
{% liquid assign count = count | plus: 1 %} {% when 'tab' %} {% if block.settings.text != blank %}
{{ block.settings.text }}
{% liquid assign count = count | plus: 1 %} {% endif %} {% endcase %} {% endfor %}
{%- if first_3d_model -%} {%- endif -%} {% if product.media.size > 0 %} {% if section.settings.arrow_navigation %} {% endif %} {% endif %} {% schema %} { "name": "t:sections.main_product.name", "tag": "section", "class": "product-info-wrap", "settings": [ { "type": "select", "id": "default_layout", "label": "t:sections.main_product.settings.default_layout.label", "info": "t:sections.main_product.settings.default_layout.info", "options": [ { "value": "three_columns", "label": "t:sections.main_product.settings.default_layout.options.label_three_col" }, { "value": "two_columns", "label": "t:sections.main_product.settings.default_layout.options.label_two_col" } ], "default": "three_columns" }, { "type": "checkbox", "id": "hide_variants", "default": false, "label": "t:sections.main_product.settings.hide_variants.label" }, { "type": "checkbox", "id": "arrow_navigation", "default": false, "label": "t:sections.main_product.settings.arrow_navigation.label", "info": "t:sections.main_product.settings.arrow_navigation.info" }, { "type": "select", "id": "image_zoom_type", "default": "lightbox", "label": "t:sections.main_product.settings.image_zoom_type.label", "info": "t:sections.main_product.settings.image_zoom_type.info", "options": [ { "value": "lightbox", "label": "t:sections.main_product.settings.image_zoom_type.options.label_1" }, { "value": "zoom_hover", "label": "t:sections.main_product.settings.image_zoom_type.options.label_2" }, { "value": "lightbox_zoom_hover", "label": "t:sections.main_product.settings.image_zoom_type.options.label_3" }, { "value": "none", "label": "t:sections.main_product.settings.image_zoom_type.options.label_4" } ] }, { "type": "select", "id": "image_ratio", "default": "adapt", "label": "t:sections.main_product.settings.image_ratio.label", "options": [ { "value": "adapt", "label": "t:sections.main_product.settings.image_ratio.options.label_1" }, { "value": "portrait", "label": "t:sections.main_product.settings.image_ratio.options.label_2" }, { "value": "square", "label": "t:sections.main_product.settings.image_ratio.options.label_3" }, { "value": "landscape", "label": "t:sections.main_product.settings.image_ratio.options.label_4" } ] }, { "type": "richtext", "id": "image_disclaimer", "label": "t:sections.main_product.settings.image_disclaimer.label", "info": "t:sections.main_product.settings.image_disclaimer.info" }, { "type": "header", "content": "t:sections.all.section_spacing.heading" }, { "type": "range", "id": "spacing_top", "min": 0, "max": 150, "step": 2, "default": 90, "label": "t:sections.all.section_spacing.spacing_top.label" }, { "type": "range", "id": "spacing_bottom", "min": 0, "max": 150, "step": 2, "default": 90, "label": "t:sections.all.section_spacing.spacing_bottom.label" } ], "blocks": [ { "type": "@app" }, { "type": "title", "name": "t:sections.main_product.blocks.title.name", "limit": 1, "settings": [ { "type": "checkbox", "id": "show_vendor", "label": "t:sections.main_product.blocks.title.settings.show_vendor.label", "default": true }, { "type": "checkbox", "id": "show_stock", "label": "t:sections.main_product.blocks.title.settings.show_stock.label", "default": true }, { "type": "checkbox", "id": "show_sku", "label": "t:sections.main_product.blocks.title.settings.show_sku.label", "default": true }, { "type": "checkbox", "id": "show_barcode", "label": "t:sections.main_product.blocks.title.settings.show_barcode.label", "default": false }, { "type": "text", "id": "barcode_label", "label": "t:sections.main_product.blocks.title.settings.barcode_label.label", "info": "t:sections.main_product.blocks.title.settings.barcode_label.info", "default": "Barcode" }, { "type": "checkbox", "id": "show_rating", "default": false, "label": "t:sections.main_product.blocks.title.settings.show_rating.label", "info": "t:sections.main_product.blocks.title.settings.show_rating.info" }, { "type": "checkbox", "id": "hide_empty_star_rating", "default": false, "label": "t:sections.main_product.blocks.title.settings.hide_empty_star_rating.label" }, { "type": "checkbox", "id": "show_custom_badges", "label": "t:sections.main_product.blocks.title.settings.show_custom_badges.label", "default": false } ] }, { "type": "price", "name": "t:sections.main_product.blocks.price.name", "limit": 1 }, { "type": "variants", "name": "t:sections.main_product.blocks.variants.name", "limit": 1, "settings": [ { "type": "select", "id": "picker_type", "label": "t:sections.main_product.blocks.variants.settings.picker_type.label", "default": "button", "options": [ { "value": "dropdown", "label": "t:sections.main_product.blocks.variants.settings.picker_type.options.label_1" }, { "value": "button", "label": "t:sections.main_product.blocks.variants.settings.picker_type.options.label_2" } ] }, { "type": "select", "id": "picker_color_scheme", "label": "t:sections.main_product.blocks.variants.settings.picker_color_scheme.label", "default": "button-secondary", "options": [ { "value": "button-primary", "label": "t:sections.all.colors.button_primary.label" }, { "value": "button-secondary", "label": "t:sections.all.colors.button_secondary.label" } ] }, { "type": "checkbox", "id": "hide_single_variant", "default": false, "label": "t:sections.main_product.blocks.variants.settings.hide_single_variant.label", "info": "t:sections.main_product.blocks.variants.settings.hide_single_variant.info" }, { "type": "select", "id": "out_of_stock_variants", "label": "t:sections.main_product.blocks.variants.settings.out_of_stock_variants.label", "default": "show", "options": [ { "value": "show", "label": "t:sections.main_product.blocks.variants.settings.out_of_stock_variants.options.label_1" }, { "value": "hide", "label": "t:sections.main_product.blocks.variants.settings.out_of_stock_variants.options.label_2" }, { "value": "disable", "label": "t:sections.main_product.blocks.variants.settings.out_of_stock_variants.options.label_3" } ] } ] }, { "type": "buy_buttons", "name": "t:sections.main_product.blocks.buy_buttons.name", "limit": 1, "settings": [ { "type": "checkbox", "id": "show_quantity", "label": "t:sections.main_product.blocks.buy_buttons.settings.show_quantity.label", "default": true }, { "type": "checkbox", "id": "show_add_to_cart", "label": "t:sections.main_product.blocks.buy_buttons.settings.show_add_to_cart.label", "default": true }, { "type": "checkbox", "id": "show_buy_now", "label": "t:sections.main_product.blocks.buy_buttons.settings.show_buy_now.label", "default": true }, { "type": "checkbox", "id": "show_gift_card_recipient", "label": "t:sections.main_product.blocks.buy_buttons.settings.show_gift_card_recipient.label", "info": "t:sections.main_product.blocks.buy_buttons.settings.show_gift_card_recipient.info", "default": false } ] }, { "type": "availability", "name": "t:sections.main_product.blocks.availability.name", "limit": 1 }, { "type": "extra", "name": "t:sections.main_product.blocks.extra.name", "limit": 2, "settings": [ { "type": "richtext", "id": "text", "label": "t:sections.main_product.blocks.extra.settings.text.label", "default": "

Use this text to encourage communication or promote sharing on social networks.

You can also add links

" }, { "type": "checkbox", "id": "show_facebook", "label": "t:sections.main_product.blocks.extra.settings.show_facebook.label", "default": true }, { "type": "checkbox", "id": "show_twitter", "label": "t:sections.main_product.blocks.extra.settings.show_twitter.label", "default": true }, { "type": "checkbox", "id": "show_linkedin", "label": "t:sections.main_product.blocks.extra.settings.show_linkedin.label", "default": true }, { "type": "select", "id": "position", "label": "t:sections.main_product.blocks.extra.settings.position.label", "info": "t:sections.main_product.blocks.extra.settings.position.info", "default": "details", "options": [ { "value": "info", "label": "t:sections.main_product.blocks.extra.settings.position.options.label_2" }, { "value": "details", "label": "t:sections.main_product.blocks.extra.settings.position.options.label_3" } ] } ] }, { "type": "request_information", "name": "t:sections.main_product.blocks.request_information.name", "limit": 1, "settings": [ { "type": "checkbox", "id": "expanded", "label": "t:sections.main_product.blocks.request_information.settings.expanded.label", "default": false }, { "type": "text", "id": "heading", "label": "t:sections.main_product.blocks.request_information.settings.heading.label", "default": "Request information" }, { "type": "richtext", "id": "description", "label": "t:sections.main_product.blocks.request_information.settings.description.label" }, { "type": "select", "id": "color_scheme", "label": "t:sections.all.colors.color_scheme.label", "default": "accent-2", "options": [ { "value": "accent-1", "label": "t:sections.all.colors.accent_1.label" }, { "value": "accent-2", "label": "t:sections.all.colors.accent_2.label" }, { "value": "accent-3", "label": "t:sections.all.colors.accent_3.label" }, { "value": "background-1", "label": "t:sections.all.colors.background_1.label" }, { "value": "background-2", "label": "t:sections.all.colors.background_2.label" } ] } ] }, { "type": "complementary", "name": "t:sections.main_product.blocks.complementary.name", "settings": [ { "type": "paragraph", "content": "t:sections.main_product.blocks.complementary.paragraph_1.content" }, { "type": "text", "id": "title", "label": "t:sections.main_product.blocks.complementary.title.label", "default": "Frequently bought together" }, { "type": "range", "id": "count", "label": "t:sections.main_product.blocks.complementary.count.label", "min": 1, "max": 10, "step": 1, "default": 3 }, { "type": "header", "content": "t:sections.main_product.blocks.complementary.header_1.content" }, { "type": "checkbox", "id": "show_vendor", "default": true, "label": "t:sections.main_product.blocks.complementary.show_vendor.label" }, { "type": "checkbox", "id": "show_rating", "default": false, "label": "t:sections.main_product.blocks.complementary.show_rating.label", "info": "t:sections.main_product.blocks.complementary.show_rating.info" }, { "type": "checkbox", "id": "show_add_to_cart", "label": "t:sections.main_product.blocks.complementary.show_add_to_cart.label", "default": true } ] }, { "type": "details", "name": "t:sections.main_product.blocks.details.name", "settings": [ { "type": "text", "id": "title", "label": "t:sections.main_product.blocks.details.settings.title.label", "default": "Product details" }, { "type": "select", "id": "icon", "label": "t:sections.all.icon.name", "default": "clipboard", "options": [ { "label": "", "value": "" }, { "label": "t:sections.all.icon.options.label_activity", "value": "activity" }, { "label": "t:sections.all.icon.options.label_add_comment", "value": "add-comment" }, { "label": "t:sections.all.icon.options.label_aperture", "value": "aperture" }, { "label": "t:sections.all.icon.options.label_arrow_down", "value": "arrow-down" }, { "label": "t:sections.all.icon.options.label_arrow_left", "value": "arrow-left" }, { "label": "t:sections.all.icon.options.label_arrow_right", "value": "arrow-right" }, { "label": "t:sections.all.icon.options.label_arrow_up", "value": "arrow-up" }, { "label": "t:sections.all.icon.options.label_assembly", "value": "assembly" }, { "label": "t:sections.all.icon.options.label_at", "value": "at" }, { "label": "t:sections.all.icon.options.label_attachment", "value": "attachment" }, { "label": "t:sections.all.icon.options.label_award", "value": "award" }, { "label": "t:sections.all.icon.options.label_bag", "value": "bag" }, { "label": "t:sections.all.icon.options.label_basket", "value": "basket" }, { "label": "t:sections.all.icon.options.label_bookmark", "value": "bookmark" }, { "label": "t:sections.all.icon.options.label_box", "value": "box" }, { "label": "t:sections.all.icon.options.label_box_2", "value": "box-2" }, { "label": "t:sections.all.icon.options.label_cart", "value": "cart" }, { "label": "t:sections.all.icon.options.label_certificate", "value": "certificate" }, { "label": "t:sections.all.icon.options.label_chat", "value": "chat" }, { "label": "t:sections.all.icon.options.label_check", "value": "check" }, { "label": "t:sections.all.icon.options.label_clipboard", "value": "clipboard" }, { "label": "t:sections.all.icon.options.label_clock", "value": "clock" }, { "label": "t:sections.all.icon.options.label_cog", "value": "cog" }, { "label": "t:sections.all.icon.options.label_credit_cart", "value": "credit-card" }, { "label": "t:sections.all.icon.options.label_cross", "value": "cross" }, { "label": "t:sections.all.icon.options.label_desktop", "value": "desktop" }, { "label": "t:sections.all.icon.options.label_document", "value": "document" }, { "label": "t:sections.all.icon.options.label_dollar", "value": "dollar" }, { "label": "t:sections.all.icon.options.label_download", "value": "download" }, { "label": "t:sections.all.icon.options.label_disabled", "value": "disabled" }, { "label": "t:sections.all.icon.options.label_email", "value": "email" }, { "label": "t:sections.all.icon.options.label_euro", "value": "euro" }, { "label": "t:sections.all.icon.options.label_flag", "value": "flag" }, { "label": "t:sections.all.icon.options.label_gift_wrap", "value": "gift-wrap" }, { "label": "t:sections.all.icon.options.label_globe", "value": "globe" }, { "label": "t:sections.all.icon.options.label_heart", "value": "heart" }, { "label": "t:sections.all.icon.options.label_heart_full", "value": "heart-full" }, { "label": "t:sections.all.icon.options.label_home", "value": "home" }, { "label": "t:sections.all.icon.options.label_info", "value": "info" }, { "label": "t:sections.all.icon.options.label_label", "value": "label" }, { "label": "t:sections.all.icon.options.label_laptop", "value": "laptop" }, { "label": "t:sections.all.icon.options.label_map", "value": "map" }, { "label": "t:sections.all.icon.options.label_menu", "value": "menu" }, { "label": "t:sections.all.icon.options.label_minus", "value": "minus" }, { "label": "t:sections.all.icon.options.label_mobile", "value": "mobile" }, { "label": "t:sections.all.icon.options.label_paper_airplane", "value": "paper-airplane" }, { "label": "t:sections.all.icon.options.label_paperclip", "value": "paperclip" }, { "label": "t:sections.all.icon.options.label_percent", "value": "percent" }, { "label": "t:sections.all.icon.options.label_phone", "value": "phone" }, { "label": "t:sections.all.icon.options.label_pin", "value": "pin" }, { "label": "t:sections.all.icon.options.label_plus", "value": "plus" }, { "label": "t:sections.all.icon.options.label_pound", "value": "pound" }, { "label": "t:sections.all.icon.options.label_refund_receipt", "value": "refund-receipt" }, { "label": "t:sections.all.icon.options.label_returns", "value": "returns" }, { "label": "t:sections.all.icon.options.label_search", "value": "search" }, { "label": "t:sections.all.icon.options.label_settings", "value": "settings" }, { "label": "t:sections.all.icon.options.label_share", "value": "share" }, { "label": "t:sections.all.icon.options.label_shield", "value": "shield" }, { "label": "t:sections.all.icon.options.label_shield_plus", "value": "shield-plus" }, { "label": "t:sections.all.icon.options.label_shirt", "value": "shirt" }, { "label": "t:sections.all.icon.options.label_star_empty", "value": "star-empty" }, { "label": "t:sections.all.icon.options.label_star_full", "value": "star-full" }, { "label": "t:sections.all.icon.options.label_assembly", "value": "assembly" }, { "label": "t:sections.all.icon.options.label_at", "value": "at" }, { "label": "t:sections.all.icon.options.label_attachment", "value": "attachment" }, { "label": "t:sections.all.icon.options.label_award", "value": "award" }, { "label": "t:sections.all.icon.options.label_bag", "value": "bag" }, { "label": "t:sections.all.icon.options.label_basket", "value": "basket" }, { "label": "t:sections.all.icon.options.label_bookmark", "value": "bookmark" }, { "label": "t:sections.all.icon.options.label_box", "value": "box" }, { "label": "t:sections.all.icon.options.label_box_2", "value": "box-2" }, { "label": "t:sections.all.icon.options.label_cart", "value": "cart" }, { "label": "t:sections.all.icon.options.label_certificate", "value": "certificate" }, { "label": "t:sections.all.icon.options.label_chat", "value": "chat" }, { "label": "t:sections.all.icon.options.label_check", "value": "check" }, { "label": "t:sections.all.icon.options.label_clipboard", "value": "clipboard" }, { "label": "t:sections.all.icon.options.label_clock", "value": "clock" }, { "label": "t:sections.all.icon.options.label_cog", "value": "cog" }, { "label": "t:sections.all.icon.options.label_credit_cart", "value": "credit-card" }, { "label": "t:sections.all.icon.options.label_cross", "value": "cross" }, { "label": "t:sections.all.icon.options.label_desktop", "value": "desktop" }, { "label": "t:sections.all.icon.options.label_document", "value": "document" }, { "label": "t:sections.all.icon.options.label_dollar", "value": "dollar" }, { "label": "t:sections.all.icon.options.label_download", "value": "download" }, { "label": "t:sections.all.icon.options.label_disabled", "value": "disabled" }, { "label": "t:sections.all.icon.options.label_email", "value": "email" }, { "label": "t:sections.all.icon.options.label_euro", "value": "euro" }, { "label": "t:sections.all.icon.options.label_flag", "value": "flag" }, { "label": "t:sections.all.icon.options.label_gift_wrap", "value": "gift-wrap" }, { "label": "t:sections.all.icon.options.label_globe", "value": "globe" }, { "label": "t:sections.all.icon.options.label_heart", "value": "heart" }, { "label": "t:sections.all.icon.options.label_heart_full", "value": "heart-full" }, { "label": "t:sections.all.icon.options.label_home", "value": "home" }, { "label": "t:sections.all.icon.options.label_info", "value": "info" }, { "label": "t:sections.all.icon.options.label_label", "value": "label" }, { "label": "t:sections.all.icon.options.label_laptop", "value": "laptop" }, { "label": "t:sections.all.icon.options.label_map", "value": "map" }, { "label": "t:sections.all.icon.options.label_menu", "value": "menu" }, { "label": "t:sections.all.icon.options.label_minus", "value": "minus" }, { "label": "t:sections.all.icon.options.label_mobile", "value": "mobile" }, { "label": "t:sections.all.icon.options.label_paper_airplane", "value": "paper-airplane" }, { "label": "t:sections.all.icon.options.label_paperclip", "value": "paperclip" }, { "label": "t:sections.all.icon.options.label_percent", "value": "percent" }, { "label": "t:sections.all.icon.options.label_phone", "value": "phone" }, { "label": "t:sections.all.icon.options.label_pin", "value": "pin" }, { "label": "t:sections.all.icon.options.label_plus", "value": "plus" }, { "label": "t:sections.all.icon.options.label_pound", "value": "pound" }, { "label": "t:sections.all.icon.options.label_refund_receipt", "value": "refund-receipt" }, { "label": "t:sections.all.icon.options.label_returns", "value": "returns" }, { "label": "t:sections.all.icon.options.label_search", "value": "search" }, { "label": "t:sections.all.icon.options.label_settings", "value": "settings" }, { "label": "t:sections.all.icon.options.label_share", "value": "share" }, { "label": "t:sections.all.icon.options.label_shield", "value": "shield" }, { "label": "t:sections.all.icon.options.label_shield_plus", "value": "shield-plus" }, { "label": "t:sections.all.icon.options.label_shirt", "value": "shirt" }, { "label": "t:sections.all.icon.options.label_star_empty", "value": "star-empty" }, { "label": "t:sections.all.icon.options.label_star_full", "value": "star-full" }, { "label": "t:sections.all.icon.options.label_store", "value": "store" }, { "label": "t:sections.all.icon.options.label_support", "value": "support" }, { "label": "t:sections.all.icon.options.label_truck", "value": "truck" }, { "label": "t:sections.all.icon.options.label_user", "value": "user" }, { "label": "t:sections.all.icon.options.label_user_alt", "value": "user-alt" }, { "label": "t:sections.all.icon.options.label_wallet", "value": "wallet" }, { "label": "t:sections.all.icon.options.label_warning", "value": "warning" }, { "label": "t:sections.all.icon.options.label_yen", "value": "yen" }, { "label": "t:sections.all.icon.options.label_facebook", "value": "facebook" }, { "label": "t:sections.all.icon.options.label_instagram", "value": "instagram" }, { "label": "t:sections.all.icon.options.label_linkedin", "value": "linkedin" }, { "label": "t:sections.all.icon.options.label_pinterest", "value": "pinterest" }, { "label": "t:sections.all.icon.options.label_snapchat", "value": "snapchat" }, { "label": "t:sections.all.icon.options.label_tiktok", "value": "tiktok" }, { "label": "t:sections.all.icon.options.label_tumblr", "value": "tumblr" }, { "label": "t:sections.all.icon.options.label_twitter", "value": "twitter" }, { "label": "t:sections.all.icon.options.label_x", "value": "x" }, { "label": "t:sections.all.icon.options.label_vimeo", "value": "vimeo" }, { "label": "t:sections.all.icon.options.label_youtube", "value": "youtube" }, { "label": "t:sections.all.icon.options.label_whatsapp", "value": "whatsapp" } ] }, { "type": "header", "content": "t:sections.all.colors.heading" }, { "type": "select", "id": "color_scheme", "label": "t:sections.all.colors.color_scheme.label", "default": "none", "options": [ { "value": "none", "label": "t:sections.all.colors.none.label" }, { "value": "accent-1", "label": "t:sections.all.colors.accent_1.label" }, { "value": "accent-2", "label": "t:sections.all.colors.accent_2.label" }, { "value": "accent-3", "label": "t:sections.all.colors.accent_3.label" }, { "value": "background-1", "label": "t:sections.all.colors.background_1.label" }, { "value": "background-2", "label": "t:sections.all.colors.background_2.label" } ] } ] }, { "type": "description", "name": "t:sections.main_product.blocks.description.name", "limit": 1, "settings": [ { "type": "text", "id": "title", "label": "t:sections.main_product.blocks.description.settings.title.label", "default": "Description" }, { "type": "select", "id": "icon", "label": "t:sections.all.icon.name", "default": "info", "options": [ { "label": "", "value": "" }, { "label": "t:sections.all.icon.options.label_activity", "value": "activity" }, { "label": "t:sections.all.icon.options.label_add_comment", "value": "add-comment" }, { "label": "t:sections.all.icon.options.label_aperture", "value": "aperture" }, { "label": "t:sections.all.icon.options.label_arrow_down", "value": "arrow-down" }, { "label": "t:sections.all.icon.options.label_arrow_left", "value": "arrow-left" }, { "label": "t:sections.all.icon.options.label_arrow_right", "value": "arrow-right" }, { "label": "t:sections.all.icon.options.label_arrow_up", "value": "arrow-up" }, { "label": "t:sections.all.icon.options.label_assembly", "value": "assembly" }, { "label": "t:sections.all.icon.options.label_at", "value": "at" }, { "label": "t:sections.all.icon.options.label_attachment", "value": "attachment" }, { "label": "t:sections.all.icon.options.label_award", "value": "award" }, { "label": "t:sections.all.icon.options.label_bag", "value": "bag" }, { "label": "t:sections.all.icon.options.label_basket", "value": "basket" }, { "label": "t:sections.all.icon.options.label_bookmark", "value": "bookmark" }, { "label": "t:sections.all.icon.options.label_box", "value": "box" }, { "label": "t:sections.all.icon.options.label_box_2", "value": "box-2" }, { "label": "t:sections.all.icon.options.label_cart", "value": "cart" }, { "label": "t:sections.all.icon.options.label_certificate", "value": "certificate" }, { "label": "t:sections.all.icon.options.label_chat", "value": "chat" }, { "label": "t:sections.all.icon.options.label_check", "value": "check" }, { "label": "t:sections.all.icon.options.label_clipboard", "value": "clipboard" }, { "label": "t:sections.all.icon.options.label_clock", "value": "clock" }, { "label": "t:sections.all.icon.options.label_cog", "value": "cog" }, { "label": "t:sections.all.icon.options.label_credit_cart", "value": "credit-card" }, { "label": "t:sections.all.icon.options.label_cross", "value": "cross" }, { "label": "t:sections.all.icon.options.label_desktop", "value": "desktop" }, { "label": "t:sections.all.icon.options.label_document", "value": "document" }, { "label": "t:sections.all.icon.options.label_dollar", "value": "dollar" }, { "label": "t:sections.all.icon.options.label_download", "value": "download" }, { "label": "t:sections.all.icon.options.label_disabled", "value": "disabled" }, { "label": "t:sections.all.icon.options.label_email", "value": "email" }, { "label": "t:sections.all.icon.options.label_euro", "value": "euro" }, { "label": "t:sections.all.icon.options.label_flag", "value": "flag" }, { "label": "t:sections.all.icon.options.label_gift_wrap", "value": "gift-wrap" }, { "label": "t:sections.all.icon.options.label_globe", "value": "globe" }, { "label": "t:sections.all.icon.options.label_heart", "value": "heart" }, { "label": "t:sections.all.icon.options.label_heart_full", "value": "heart-full" }, { "label": "t:sections.all.icon.options.label_home", "value": "home" }, { "label": "t:sections.all.icon.options.label_info", "value": "info" }, { "label": "t:sections.all.icon.options.label_label", "value": "label" }, { "label": "t:sections.all.icon.options.label_laptop", "value": "laptop" }, { "label": "t:sections.all.icon.options.label_map", "value": "map" }, { "label": "t:sections.all.icon.options.label_menu", "value": "menu" }, { "label": "t:sections.all.icon.options.label_minus", "value": "minus" }, { "label": "t:sections.all.icon.options.label_mobile", "value": "mobile" }, { "label": "t:sections.all.icon.options.label_paper_airplane", "value": "paper-airplane" }, { "label": "t:sections.all.icon.options.label_paperclip", "value": "paperclip" }, { "label": "t:sections.all.icon.options.label_percent", "value": "percent" }, { "label": "t:sections.all.icon.options.label_phone", "value": "phone" }, { "label": "t:sections.all.icon.options.label_pin", "value": "pin" }, { "label": "t:sections.all.icon.options.label_plus", "value": "plus" }, { "label": "t:sections.all.icon.options.label_pound", "value": "pound" }, { "label": "t:sections.all.icon.options.label_refund_receipt", "value": "refund-receipt" }, { "label": "t:sections.all.icon.options.label_returns", "value": "returns" }, { "label": "t:sections.all.icon.options.label_search", "value": "search" }, { "label": "t:sections.all.icon.options.label_settings", "value": "settings" }, { "label": "t:sections.all.icon.options.label_share", "value": "share" }, { "label": "t:sections.all.icon.options.label_shield", "value": "shield" }, { "label": "t:sections.all.icon.options.label_shield_plus", "value": "shield-plus" }, { "label": "t:sections.all.icon.options.label_shirt", "value": "shirt" }, { "label": "t:sections.all.icon.options.label_star_empty", "value": "star-empty" }, { "label": "t:sections.all.icon.options.label_star_full", "value": "star-full" }, { "label": "t:sections.all.icon.options.label_store", "value": "store" }, { "label": "t:sections.all.icon.options.label_support", "value": "support" }, { "label": "t:sections.all.icon.options.label_truck", "value": "truck" }, { "label": "t:sections.all.icon.options.label_user", "value": "user" }, { "label": "t:sections.all.icon.options.label_user_alt", "value": "user-alt" }, { "label": "t:sections.all.icon.options.label_wallet", "value": "wallet" }, { "label": "t:sections.all.icon.options.label_warning", "value": "warning" }, { "label": "t:sections.all.icon.options.label_yen", "value": "yen" }, { "label": "t:sections.all.icon.options.label_facebook", "value": "facebook" }, { "label": "t:sections.all.icon.options.label_instagram", "value": "instagram" }, { "label": "t:sections.all.icon.options.label_linkedin", "value": "linkedin" }, { "label": "t:sections.all.icon.options.label_pinterest", "value": "pinterest" }, { "label": "t:sections.all.icon.options.label_snapchat", "value": "snapchat" }, { "label": "t:sections.all.icon.options.label_tiktok", "value": "tiktok" }, { "label": "t:sections.all.icon.options.label_tumblr", "value": "tumblr" }, { "label": "t:sections.all.icon.options.label_twitter", "value": "twitter" }, { "label": "t:sections.all.icon.options.label_x", "value": "x" }, { "label": "t:sections.all.icon.options.label_vimeo", "value": "vimeo" }, { "label": "t:sections.all.icon.options.label_youtube", "value": "youtube" }, { "label": "t:sections.all.icon.options.label_whatsapp", "value": "whatsapp" } ] } ] }, { "type": "reviews", "name": "t:sections.main_product.blocks.reviews.name", "limit": 1, "settings": [ { "type": "checkbox", "id": "show_count", "label": "t:sections.main_product.blocks.reviews.settings.show_count.label", "default": false } ] }, { "type": "tab", "name": "t:sections.main_product.blocks.tab.name", "settings": [ { "type": "text", "id": "title", "label": "t:sections.main_product.blocks.tab.settings.title.label", "default": "Title" }, { "type": "select", "id": "icon", "label": "t:sections.all.icon.name", "options": [ { "label": "", "value": "" }, { "label": "t:sections.all.icon.options.label_activity", "value": "activity" }, { "label": "t:sections.all.icon.options.label_add_comment", "value": "add-comment" }, { "label": "t:sections.all.icon.options.label_aperture", "value": "aperture" }, { "label": "t:sections.all.icon.options.label_arrow_down", "value": "arrow-down" }, { "label": "t:sections.all.icon.options.label_arrow_left", "value": "arrow-left" }, { "label": "t:sections.all.icon.options.label_arrow_right", "value": "arrow-right" }, { "label": "t:sections.all.icon.options.label_arrow_up", "value": "arrow-up" }, { "label": "t:sections.all.icon.options.label_assembly", "value": "assembly" }, { "label": "t:sections.all.icon.options.label_at", "value": "at" }, { "label": "t:sections.all.icon.options.label_attachment", "value": "attachment" }, { "label": "t:sections.all.icon.options.label_award", "value": "award" }, { "label": "t:sections.all.icon.options.label_bag", "value": "bag" }, { "label": "t:sections.all.icon.options.label_basket", "value": "basket" }, { "label": "t:sections.all.icon.options.label_bookmark", "value": "bookmark" }, { "label": "t:sections.all.icon.options.label_box", "value": "box" }, { "label": "t:sections.all.icon.optiions.label_activity", "value": "activity" }, { "label": "t:sections.all.icon.options.label_add_comment", "value": "add-comment" }, { "label": "t:sections.all.icon.options.label_aperture", "value": "aperture" }, { "label": "t:sections.all.icon.options.label_arrow_down", "value": "arrow-down" }, { "label": "t:sections.all.icon.options.label_arrow_left", "value": "arrow-left" }, { "label": "t:sections.all.icon.options.label_arrow_right", "value": "arrow-right" }, { "label": "t:sections.all.icon.options.label_arrow_up", "value": "arrow-up" }, { "label": "t:sections.all.icon.options.label_assembly", "value": "assembly" }, { "label": "t:sections.all.icon.options.label_at", "value": "at" }, { "label": "t:sections.all.icon.options.label_attachment", "value": "attachment" }, { "label": "t:sections.all.icon.options.label_award", "value": "award" }, { "label": "t:sections.all.icon.options.label_bag", "value": "bag" }, { "label": "t:sections.all.icon.options.label_basket", "value": "basket" }, { "label": "t:sections.all.icon.options.label_bookmark", "value": "bookmark" }, { "label": "t:sections.all.icon.options.label_box", "value": "box" }, { "label": "t:sections.all.icon.options.label_box_2", "value": "box-2" }, { "label": "t:sections.all.icon.options.label_cart", "value": "cart" }, { "label": "t:sections.all.icon.options.label_certificate", "value": "certificate" }, { "label": "t:sections.all.icon.options.label_chat", "value": "chat" }, { "label": "t:sections.all.icon.options.label_check", "value": "check" }, { "label": "t:sections.all.icon.options.label_clipboard", "value": "clipboard" }, { "label": "t:sections.all.icon.options.label_clock", "value": "clock" }, { "label": "t:sections.all.icon.options.label_cog", "value": "cog" }, { "label": "t:sections.all.icon.options.label_credit_cart", "value": "credit-card" }, { "label": "t:sections.all.icon.options.label_cross", "value": "cross" }, { "label": "t:sections.all.icon.options.label_desktop", "value": "desktop" }, { "label": "t:sections.all.icon.options.label_document", "value": "document" }, { "label": "t:sections.all.icon.options.label_dollar", "value": "dollar" }, { "label": "t:sections.all.icon.options.label_download", "value": "download" }, { "label": "t:sections.all.icon.options.label_disabled", "value": "disabled" }, { "label": "t:sections.all.icon.options.label_email", "value": "email" }, { "label": "t:sections.all.icon.options.label_euro", "value": "euro" }, { "label": "t:sections.all.icon.options.label_flag", "value": "flag" }, { "label": "t:sections.all.icon.options.label_gift_wrap", "value": "gift-wrap" }, { "label": "t:sections.all.icon.options.label_globe", "value": "globe" }, { "label": "t:sections.all.icon.options.label_heart", "value": "heart" }, { "label": "t:sections.all.icon.options.label_heart_full", "value": "heart-full" }, { "label": "t:sections.all.icon.options.label_home", "value": "home" }, { "label": "t:sections.all.icon.options.label_info", "value": "info" }, { "label": "t:sections.all.icon.options.label_label", "value": "label" }, { "label": "t:sections.all.icon.options.label_laptop", "value": "laptop" }, { "label": "t:sections.all.icon.options.label_map", "value": "map" }, { "label": "t:sections.all.icon.options.label_menu", "value": "menu" }, { "label": "t:sections.all.icon.options.label_minus", "value": "minus" }, { "label": "t:sections.all.icon.options.label_mobile", "value": "mobile" }, { "label": "t:sections.all.icon.options.label_paper_airplane", "value": "paper-airplane" }, { "label": "t:sections.all.icon.options.label_paperclip", "value": "paperclip" }, { "label": "t:sections.all.icon.options.label_percent", "value": "percent" }, { "label": "t:sections.all.icon.options.label_phone", "value": "phone" }, { "label": "t:sections.all.icon.options.label_pin", "value": "pin" }, { "label": "t:sections.all.icon.options.label_plus", "value": "plus" }, { "label": "t:sections.all.icon.options.label_pound", "value": "pound" }, { "label": "t:sections.all.icon.options.label_refund_receipt", "value": "refund-receipt" }, { "label": "t:sections.all.icon.options.label_returns", "value": "returns" }, { "label": "t:sections.all.icon.options.label_search", "value": "search" }, { "label": "t:sections.all.icon.options.label_settings", "value": "settings" }, { "label": "t:sections.all.icon.options.label_share", "value": "share" }, { "label": "t:sections.all.icon.options.label_shield", "value": "shield" }, { "label": "t:sections.all.icon.options.label_shield_plus", "value": "shield-plus" }, { "label": "t:sections.all.icon.options.label_shirt", "value": "shirt" }, { "label": "t:sections.all.icon.options.label_star_empty", "value": "star-empty" }, { "label": "t:sections.all.icon.options.label_star_full", "value": "star-full" }, { "label": "t:sections.all.icon.options.label_store", "value": "store" }, { "label": "t:sections.all.icon.options.label_support", "value": "support" }, { "label": "t:sections.all.icon.options.label_truck", "value": "truck" }, { "label": "t:sections.all.icon.options.label_user", "value": "user" }, { "label": "t:sections.all.icon.options.label_user_alt", "value": "user-alt" }, { "label": "t:sections.all.icon.options.label_wallet", "value": "wallet" }, { "label": "t:sections.all.icon.options.label_warning", "value": "warning" }, { "label": "t:sections.all.icon.options.label_yen", "value": "yen" }, { "label": "t:sections.all.icon.options.label_facebook", "value": "facebook" }, { "label": "t:sections.all.icon.options.label_instagram", "value": "instagram" }, { "label": "t:sections.all.icon.options.label_linkedin", "value": "linkedin" }, { "label": "t:sections.all.icon.options.label_pinterest", "value": "pinterest" }, { "label": "t:sections.all.icon.options.label_snapchat", "value": "snapchat" }, { "label": "t:sections.all.icon.options.label_tiktok", "value": "tiktok" }, { "label": "t:sections.all.icon.options.label_tumblr", "value": "tumblr" }, { "label": "t:sections.all.icon.options.label_twitter", "value": "twitter" }, { "label": "t:sections.all.icon.options.label_x", "value": "x" }, { "label": "t:sections.all.icon.options.label_vimeo", "value": "vimeo" }, { "label": "t:sections.all.icon.options.label_youtube", "value": "youtube" }, { "label": "t:sections.all.icon.options.label_whatsapp", "value": "whatsapp" } ] }, { "type": "liquid", "id": "custom_liquid", "label": "t:sections.all.custom_liquid.custom_liquid.label", "info": "t:sections.all.custom_liquid.custom_liquid.info" }, { "type": "select", "id": "position", "label": "t:sections.main_product.blocks.custom_liquid.settings.position.label", "info": "t:sections.main_product.blocks.custom_liquid.settings.position.info", "default": "tab", "options": [ { "value": "tab", "label": "t:sections.main_product.blocks.custom_liquid.settings.position.options.label_1" }, { "value": "info", "label": "t:sections.main_product.blocks.custom_liquid.settings.position.options.label_2" }, { "value": "details", "label": "t:sections.main_product.blocks.custom_liquid.settings.position.options.label_3" } ] } ] }, { "type": "image", "name": "t:sections.main_product.blocks.image.name", "settings": [ { "type": "image_picker", "id": "image", "label": "t:sections.main_product.blocks.image.settings.image.label" }, { "type": "url", "id": "link", "label": "t:sections.main_product.blocks.image.settings.link.label" }, { "type": "range", "id": "width", "label": "t:sections.main_product.blocks.image.settings.width.label", "min": 1, "max": 100, "step": 1, "default": 100, "unit": "%" }, { "type": "select", "id": "alignment", "label": "t:sections.main_product.blocks.image.settings.alignment.label", "info": "t:sections.main_product.blocks.image.settings.alignment.info", "default": "left", "options": [ { "value": "left", "label": "t:sections.main_product.blocks.image.settings.alignment.options.label_1" }, { "value": "center", "label": "t:sections.main_product.blocks.image.settings.alignment.options.label_2" }, { "value": "right", "label": "t:sections.main_product.blocks.image.settings.alignment.options.label_3" } ] }, { "type": "select", "id": "position", "label": "t:sections.main_product.blocks.image.settings.position.label", "info": "t:sections.main_product.blocks.image.settings.position.info", "default": "info", "options": [ { "value": "info", "label": "t:sections.main_product.blocks.image.settings.position.options.label_2" }, { "value": "details", "label": "t:sections.main_product.blocks.image.settings.position.options.label_3" } ] } ] }, { "type": "info_box", "name": "t:sections.main_product.blocks.info_box.name", "settings": [ { "type": "checkbox", "id": "enable_payment_icons", "default": false, "label": "t:sections.main_product.blocks.info_box.settings.enable_payment_icons.label" }, { "type": "text", "id": "heading", "label": "t:sections.main_product.blocks.info_box.settings.heading.label", "default": "Payment details" }, { "type": "richtext", "id": "text", "label": "t:sections.main_product.blocks.info_box.settings.text.label", "default": "

Help your customers identify what payments are accepted by your store.

" }, { "type": "select", "id": "icon", "label": "t:sections.all.icon.name", "default": "info", "options": [ { "label": "", "value": "" }, { "label": "t:sections.all.icon.options.label_activity", "value": "activity" }, { "label": "t:sections.all.icon.options.label_add_comment", "value": "add-comment" }, { "label": "t:sections.all.icon.options.label_aperture", "value": "aperture" }, { "label": "t:sections.all.icon.options.label_arrow_down", "value": "arrow-down" }, { "label": "t:sections.all.icon.options.label_arrow_left", "value": "arrow-left" }, { "label": "t:sections.all.icon.options.label_arrow_right", "value": "arrow-right" }, { "label": "t:sections.all.icon.options.label_arrow_up", "value": "arrow-up" }, { "label": "t:sections.all.icon.options.label_assembly", "value": "assembly" }, { "label": "t:sections.all.icon.options.label_at", "value": "at" }, { "label": "t:sections.all.icon.options.label_attachment", "value": "attachment" }, { "label": "t:sections.all.icon.options.label_award", "value": "award" }, { "label": "t:sections.all.icon.options.label_bag", "value": "bag" }, { "label": "t:sections.all.icon.options.label_basket", "value": "basket" }, { "label": "t:sections.all.icon.options.label_bookmark", "value": "bookmark" }, { "label": "t:sections.all.icon.options.label_box", "value": "box" }, { "label": "t:sections.all.icon.options.label_box_2", "value": "box-2" }, { "label": "t:sections.all.icon.options.label_cart", "value": "cart" }, { "label": "t:sections.all.icon.options.label_certificate", "value": "certificate" }, { "label": "t:sections.all.icon.options.label_chat", "value": "chat" }, { "label": "t:sections.all.icon.options.label_check", "value": "check" }, { "label": "t:sections.all.icon.options.label_clipboard", "value": "clipboard" }, { "label": "t:sections.all.icon.options.label_clock", "value": "clock" }, { "label": "t:sections.all.icon.options.label_cog", "value": "cog" }, { "label": "t:sections.all.icon.options.label_credit_cart", "value": "credit-card" }, { "label": "t:sections.all.icon.options.label_cross", "value": "cross" }, { "label": "t:sections.all.icon.options.label_desktop", "value": "desktop" }, { "label": "t:sections.all.icon.options.label_document", "value": "document" }, { "label": "t:sections.all.icon.options.label_dollar", "value": "dollar" }, { "label": "t:sections.all.icon.options.label_download", "value": "download" }, { "label": "t:sections.all.icon.options.label_disabled", "value": "disabled" }, { "label": "t:sections.all.icon.options.label_email", "value": "email" }, { "label": "t:sections.all.icon.options.label_euro", "value": "euro" }, { "label": "t:sections.all.icon.options.label_flag", "value": "flag" }, { "label": "t:sections.all.icon.options.label_gift_wrap", "value": "gift-wrap" }, { "label": "t:sections.all.icon.options.label_globe", "value": "globe" }, { "label": "t:sections.all.icon.options.label_heart", "value": "heart" }, { "label": "t:sections.all.icon.options.label_heart_full", "value": "heart-full" }, { "label": "t:sections.all.icon.options.label_home", "value": "home" }, { "label": "t:sections.all.icon.options.label_info", "value": "info" }, { "label": "t:sections.all.icon.options.label_label", "value": "label" }, { "label": "t:sections.all.icon.options.label_laptop", "value": "laptop" }, { "label": "t:sections.all.icon.options.label_map", "value": "map" }, { "label": "t:sections.all.icon.options.label_menu", "value": "menu" }, { "label": "t:sections.all.icon.options.label_minus", "value": "minus" }, { "label": "t:sections.all.icon.options.label_mobile", "value": "mobile" }, { "label": "t:sections.all.icon.options.label_paper_airplane", "value": "paper-airplane" }, { "label": "t:sections.all.icon.options.label_paperclip", "value": "paperclip" }, { "label": "t:sections.all.icon.options.label_percent", "value": "percent" }, { "label": "t:sections.all.icon.options.label_phone", "value": "phone" }, { "label": "t:sections.all.icon.options.label_pin", "value": "pin" }, { "label": "t:sections.all.icon.options.label_plus", "value": "plus" }, { "label": "t:sections.all.icon.options.label_pound", "value": "pound" }, { "label": "t:sections.all.icon.options.label_refund_receipt", "value": "refund-receipt" }, { "label": "t:sections.all.icon.options.label_returns", "value": "returns" }, { "label": "t:sections.all.icon.options.label_search", "value": "search" }, { "label": "t:sections.all.icon.options.label_settings", "value": "settings" }, { "label": "t:sections.all.icon.options.label_share", "value": "share" }, { "label": "t:sections.all.icon.options.label_shield", "value": "shield" }, { "label": "t:sections.all.icon.options.label_shield_plus", "value": "shield-plus" }, { "label": "t:sections.all.icon.options.label_shirt", "value": "shirt" }, { "label": "t:sections.all.icon.options.label_star_empty", "value": "star-empty" }, { "label": "t:sections.all.icon.options.label_star_full", "value": "star-full" }, { "label": "t:sections.all.icon.options.label_store", "value": "store" }, { "label": "t:sections.all.icon.options.label_support", "value": "support" }, { "label": "t:sections.all.icon.options.label_truck", "value": "truck" }, { "label": "t:sections.all.icon.options.label_user", "value": "user" }, { "label": "t:sections.all.icon.options.label_user_alt", "value": "user-alt" }, { "label": "t:sections.all.icon.options.label_wallet", "value": "wallet" }, { "label": "t:sections.all.icon.options.label_warning", "value": "warning" }, { "label": "t:sections.all.icon.options.label_yen", "value": "yen" }, { "label": "t:sections.all.icon.options.label_facebook", "value": "facebook" }, { "label": "t:sections.all.icon.options.label_instagram", "value": "instagram" }, { "label": "t:sections.all.icon.options.label_linkedin", "value": "linkedin" }, { "label": "t:sections.all.icon.options.label_pinterest", "value": "pinterest" }, { "label": "t:sections.all.icon.options.label_snapchat", "value": "snapchat" }, { "label": "t:sections.all.icon.options.label_tiktok", "value": "tiktok" }, { "label": "t:sections.all.icon.options.label_tumblr", "value": "tumblr" }, { "label": "t:sections.all.icon.options.label_twitter", "value": "twitter" }, { "label": "t:sections.all.icon.options.label_x", "value": "x" }, { "label": "t:sections.all.icon.options.label_vimeo", "value": "vimeo" }, { "label": "t:sections.all.icon.options.label_youtube", "value": "youtube" }, { "label": "t:sections.all.icon.options.label_whatsapp", "value": "whatsapp" } ] }, { "type": "color", "id": "color_foreground", "label": "t:sections.main_product.blocks.info_box.settings.color_foreground.label", "default": "#404040" }, { "type": "color", "id": "color_background", "label": "t:sections.main_product.blocks.info_box.settings.color_background.label", "default": "#ffffff" }, { "type": "select", "id": "position", "label": "t:sections.main_product.blocks.info_box.settings.position.label", "info": "t:sections.main_product.blocks.info_box.settings.position.info", "default": "info", "options": [ { "value": "info", "label": "t:sections.main_product.blocks.info_box.settings.position.options.label_2" }, { "value": "details", "label": "t:sections.main_product.blocks.info_box.settings.position.options.label_3" } ] } ] }, { "type": "stock_bar", "name": "t:sections.main_product.blocks.stock_bar.name", "limit": 1, "settings": [ { "type": "text", "id": "text_in_stock", "label": "t:sections.main_product.blocks.stock_bar.settings.text_in_stock.label", "default": "Usually ships within 24 hours" }, { "type": "text", "id": "text_out_of_stock", "label": "t:sections.main_product.blocks.stock_bar.settings.text_out_of_stock.label" }, { "type": "text", "id": "text_low_inventory", "label": "t:sections.main_product.blocks.stock_bar.settings.text_low_inventory.label", "default": "Low inventory - Hurry up!" }, { "type": "text", "id": "text_on_backorder", "label": "t:sections.main_product.blocks.stock_bar.settings.text_on_backorder.label", "default": "On backorder" }, { "type": "text", "id": "text_preorder", "label": "t:sections.main_product.blocks.stock_bar.settings.text_preorder.label", "default": "New stock coming soon!" } ] }, { "type": "product_signup", "name": "t:sections.main_product.blocks.product_signup.name", "settings": [ { "type": "text", "id": "heading", "label": "t:sections.main_product.blocks.product_signup.settings.heading.label", "default": "Be the first to know" }, { "type": "select", "id": "show_when", "default": "always", "label": "t:sections.main_product.blocks.product_signup.settings.show_when.label", "options": [ { "value": "always", "label": "t:sections.main_product.blocks.product_signup.settings.show_when.options.label_always" }, { "value": "out_of_stock", "label": "t:sections.main_product.blocks.product_signup.settings.show_when.options.label_out_of_stock" } ] }, { "type": "checkbox", "id": "consent_checkbox", "default": false, "label": "t:sections.main_product.blocks.product_signup.settings.consent_checkbox.label", "info": "t:sections.main_product.blocks.product_signup.settings.consent_checkbox.info" }, { "type": "richtext", "id": "consent_text", "label": "t:sections.main_product.blocks.product_signup.settings.consent_text.label", "default": "

I agree to receive marketing emails and special deals.

" }, { "type": "select", "id": "color_scheme", "label": "t:sections.all.colors.color_scheme.label", "default": "accent-2", "options": [ { "value": "accent-1", "label": "t:sections.all.colors.accent_1.label" }, { "value": "accent-2", "label": "t:sections.all.colors.accent_2.label" }, { "value": "accent-3", "label": "t:sections.all.colors.accent_3.label" }, { "value": "background-1", "label": "t:sections.all.colors.background_1.label" }, { "value": "background-2", "label": "t:sections.all.colors.background_2.label" } ] }, { "type": "select", "id": "position", "label": "t:sections.main_product.blocks.product_signup.settings.position.label", "info": "t:sections.main_product.blocks.product_signup.settings.position.info", "default": "info", "options": [ { "value": "info", "label": "t:sections.main_product.blocks.product_signup.settings.position.options.label_2" }, { "value": "details", "label": "t:sections.main_product.blocks.product_signup.settings.position.options.label_3" } ] } ] }, { "type": "product_metadata", "name": "t:sections.main_product.blocks.product_metadata.name", "limit": 1, "settings": [ { "type": "checkbox", "id": "show_vendor", "label": "t:sections.main_product.blocks.product_metadata.settings.show_vendor.label", "default": true }, { "type": "checkbox", "id": "show_sku", "label": "t:sections.main_product.blocks.product_metadata.settings.show_sku.label", "default": true }, { "type": "checkbox", "id": "show_barcode", "label": "t:sections.main_product.blocks.product_metadata.settings.show_barcode.label", "default": false }, { "type": "text", "id": "barcode_label", "label": "t:sections.main_product.blocks.product_metadata.settings.barcode_label.label", "info": "t:sections.main_product.blocks.title.settings.barcode_label.info", "default": "Barcode" } ] } ] } {% endschema %}