Hi, I have a problem with my Shopify product pages. They show the wrong pricing (f.i. my product is $25, price shown on the product page is $30. Product is $425, price is shown as $500). It’s only the product pages - The collection pages and checkout price are correct. Can anyone help with this?
did anyone work on customisation of theme recently, looks like money format and roundup issue accidentally creeped in. Try to paste code where prices are displayed from product-template.liquid or product-price.liquid or equivalent files of your theme
Not that I would know, unless someone else has touched it. Is this something you could help me with at all?
I have attached the file codes below:
product-template.liquid
Show More
{%- render ‘product-template’,
product: product,
section_id: product.id,
product_shipping_callout: section.settings.product_shipping_callout,
image_container_width: section.settings.product_image_size,
product_image_type: section.settings.product_image_type,
product_zoom_enable: section.settings.product_zoom_enable,
variant_type: section.settings.variant_type,
variant_labels_enable: section.settings.variant_labels_enable,
sku_enable: section.settings.sku_enable,
quantity_enable: section.settings.quantity_enable,
inventory_enable: section.settings.inventory_enable,
inventory_threshold: section.settings.inventory_threshold,
inventory_transfers_enable: section.settings.inventory_transfers_enable,
surface_pickup_enable: section.settings.surface_pickup_enable,
enable_payment_button: section.settings.enable_payment_button,
social_enable: section.settings.social_enable,
video_looping: section.settings.enable_video_looping,
video_style: section.settings.product_video_style
-%}
{%- if settings.enable_product_reviews -%}
{{ product.metafields.spr.reviews }}
{%- endif -%}
{% schema %}
{
“name”: “Product pages”,
“settings”: [
{
“type”: “header”,
“content”: “Media”
},
{
“type”: “select”,
“id”: “product_image_size”,
“label”: “Image size”,
“default”: “large”,
“options”: [
{
“value”: “small”,
“label”: “Small”
},
{
“value”: “medium”,
“label”: “Medium”
},
{
“value”: “large”,
“label”: “Large”
}
]
},
{
“type”: “select”,
“id”: “product_image_type”,
“label”: “Image style”,
“default”: “stacked”,
“options”: [
{
“value”: “stacked”,
“label”: “Stacked”
},
{
“value”: “slider”,
“label”: “Fade”
}
]
},
{
“type”: “checkbox”,
“id”: “product_zoom_enable”,
“label”: “Enable image zoom”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “enable_video_looping”,
“label”: “Enable video looping”,
“default”: true
},
{
“type”: “select”,
“id”: “product_video_style”,
“label”: “Video style”,
“default”: “muted”,
“options”: [
{
“value”: “muted”,
“label”: “Video without sound”
},
{
“value”: “unmuted”,
“label”: “Video with sound”
}
],
“info”: “Video with sound will not autoplay”
},
{
“type”: “header”,
“content”: “Product settings”
},
{
“type”: “checkbox”,
“id”: “enable_payment_button”,
“label”: “Show dynamic checkout button”,
“info”: “Lets customers check out directly using a familiar payment method. Learn more”,
“default”: true
},
{
“type”: “text”,
“id”: “product_shipping_callout”,
“label”: “Callout text”,
“info”: “E.g. Free shipping + returns”
},
{
“type”: “select”,
“id”: “variant_type”,
“label”: “Variant picker style”,
“default”: “button”,
“options”: [
{
“value”: “button”,
“label”: “Buttons”
},
{
“value”: “dropdown”,
“label”: “Dropdown”
}
]
},
{
“type”: “checkbox”,
“id”: “variant_labels_enable”,
“label”: “Show variant labels”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “sku_enable”,
“label”: “Show SKU”
},
{
“type”: “checkbox”,
“id”: “inventory_enable”,
“label”: “Show inventory notice”
},
{
“type”: “range”,
“id”: “inventory_threshold”,
“label”: “Inventory threshold”,
“default”: 10,
“min”: 0,
“max”: 20,
“step”: 2
},
{
“type”: “checkbox”,
“id”: “inventory_transfers_enable”,
“label”: “Show inventory transfer notice”,
“info”: “Learn how to create inventory transfers here”
},
{
“type”: “checkbox”,
“id”: “quantity_enable”,
“label”: “Show quantity field”
},
{
“type”: “checkbox”,
“id”: “surface_pickup_enable”,
“label”: “Enable pickup availability feature”,
“info”: “Learn how to setup this feature here”
},
{
“type”: “checkbox”,
“id”: “social_enable”,
“label”: “Enable social sharing”,
“default”: true
}
]
}
{% endschema %}
{% if product.metafields.loox.num_reviews %}
{% endif %}
{{ product.metafields.loox.reviews }}
product-template.liquid
{% comment %}
The contents of the product.liquid template can be found in /sections/product-template.liquid
{% endcomment %}
{% section ‘product-template’ %}
{% section ‘product-recommendations’ %}
{% if collection %}
{% include ‘icon-arrow-left’ %}
{{ ‘products.product.back_to_collection’ | t: title: collection.title }}
{% endif %}
{% assign current_variant = product.selected_or_first_available_variant %}
Thanks so much!
There will be another product-template.liquid under snippets
Show More
{%- liquid
assign current_variant = product.selected_or_first_available_variant
assign product_zoom_size = ‘1800x1800’
assign product_image_size = ‘620x’
case image_container_width
when ‘small’
assign product_image_width = ‘medium-up–two-fifths’
assign product_description_width = ‘medium-up–three-fifths’
assign product_image_size = ‘480x’
when ‘medium’
assign product_image_width = ‘medium-up–one-half’
assign product_description_width = ‘medium-up–one-half’
assign product_image_size = ‘620x’
when ‘large’
assign product_image_width = ‘medium-up–three-fifths’
assign product_description_width = ‘medium-up–two-fifths’
assign product_image_size = ‘740x’
endcase
-%}
{%- render ‘product-template-variables’, product: product, current_variant: current_variant -%}
{%- render ‘product-images’,
section_id: section_id,
product: product,
product_image_type: product_image_type,
product_zoom_enable: product_zoom_enable,
product_zoom_size: product_zoom_size,
product_image_size: product_image_size,
isModal: isModal,
video_looping: video_looping,
video_style: video_style
-%}
{%- if settings.vendor_enable -%}
{{ product.vendor }}
{%- endif -%}
{%- if sku_enable -%}
{%- if current_variant.sku -%}
{{ current_variant.sku }}
{%- endif -%}
{%- endif -%}
{%- if isModal -%}
{{ product.title }}
{%- else -%}
{{ product.title }}
{%- endif -%}
{%- if settings.enable_product_reviews -%}
{%- liquid
if isModal
assign review_link = product.url | within: collection | append: ‘#Reviews-’ | append: product.id
else
assign review_link = ‘#Reviews-’ | append: product.id
endif
-%}
{%- endif -%}
{%- if product.compare_at_price_max > product.price -%}
{%- liquid
assign hide_sale_price = true
if current_variant.compare_at_price
assign hide_sale_price = false
endif
-%}
{{ ‘products.general.regular_price’ | times:1.20 | t }}
{%- if current_variant.compare_at_price > current_variant.price -%}
{{ current_variant.compare_at_price | times:1.20 | money }}
{%- endif -%}
{{ ‘products.general.sale_price’ | t }}
{%- else -%}
{{ ‘products.general.regular_price’ | t }}
{%- endif -%}
{{ current_variant.price | times:1.20 | money }}
{%- if product_shipping_callout != blank -%}
{{ product_shipping_callout }}
{%- endif -%}
{%- capture unit_price_base_unit -%}
{%- if current_variant.unit_price_measurement -%}
{%- if current_variant.unit_price_measurement.reference_value != 1 -%}
{{ current_variant.unit_price_measurement.reference_value }}
{%- endif -%}
{{ current_variant.unit_price_measurement.reference_unit }}
{%- endif -%}
{%- endcapture -%}
{{ current_variant.unit_price | times:1.20 | money }}/{{ unit_price_base_unit }}
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}
{%- if shop.taxes_included -%} {{ 'products.product.include_taxes' | t }} {%- endif -%} {%- if shop.shipping_policy.body != blank -%} {{ 'products.product.shipping_policy_html' | t: link: shop.shipping_policy.url }} {%- endif -%}{%- endif -%}
{%- if inventory_enable or inventory_transfers_enable -%}
{%- assign variants_with_inventory_tracking = product.variants | where: ‘inventory_management’, ‘shopify’ -%}
{%- liquid
assign inventory_visible = false
if inventory_enable and current_variant.inventory_management == ‘shopify’
if current_variant.inventory_quantity <= inventory_threshold and current_variant.inventory_quantity >= 0
assign inventory_visible = true
endif
endif
if current_variant.inventory_quantity == 0 or current_variant.inventory_policy == ‘continue’
assign inventory_visible = false
endif
-%}
{%- if inventory_enable -%}
{%- if current_variant.available -%}
{{ ‘products.product.stock_label’ | t: count: current_variant.inventory_quantity }}
{%- endif -%}
{%- endif -%}
{%- if inventory_transfers_enable -%}
{%- if current_variant.incoming and inventory_visible == false -%}
{%- if current_variant.next_incoming_date -%}
{%- assign date = current_variant.next_incoming_date | date: format: ‘date’ -%}
{%- if current_variant.available -%}
{{ ‘products.product.will_not_ship_until’ | t: date: date }}
{%- else -%}
{{ ‘products.product.will_be_in_stock_after’ | t: date: date }}
{%- endif -%}
{%- else -%}
{{ ‘products.product.waiting_for_stock’ | t }}
{%- endif -%}
{%- endif -%}
{%- endif -%}
{%- endif -%}
{%- unless isModal -%}
{% comment %}
Shopify’s product form attaches a number of tracking
scripts that cause slower load times and false statistics.
Quick view modals request these on-demand.
{% endcomment %}
{%- render ‘product-form’,
section_id: section_id,
product: product,
current_variant: current_variant,
variant_type: variant_type,
variant_labels_enable: variant_labels_enable,
quantity_enable: quantity_enable,
enable_payment_button: enable_payment_button
-%}
{%- else -%}
{%- if product.options.size > 0 -%}
{%- for i in (1..product.options.size) -%}
{%- endfor -%}
{%- endif -%}
{%- endunless -%}
{%- if settings.trust_image != blank -%}
{%- assign img_url = settings.trust_image | img_url: ‘1x1’ | replace: ‘1x1.', '{width}x.’ -%}
{%- endif -%}
{%- if surface_pickup_enable -%}
{%- endif -%}
{%- if settings.additional_content_style == ‘expandable’ -%}
{%- render ‘product-additional-content’, product: product, section_id: section_id -%}
{%- else -%}
{%- render ‘product-additional-tabs’, product: product, section_id: section_id -%}
{%- endif -%}
{%- if social_enable -%}
{%- render ‘social-sharing’, share_title: product.title, share_permalink: product.url, share_image: product -%}
{%- endif -%}
Please remove all instances of " | times:1.20 " this is basically increasing your product price by 20% by multiplying with 1.2 not sure why that should be the case.
Please create a backup of entire theme by duplicating it just in case things don’t go as expected,
All the best!
Show More
I seemed to have ‘broken’ the code / not removed enough:
{%- liquid
assign current_variant = product.selected_or_first_available_variant
assign product_zoom_size = ‘1800x1800’
assign product_image_size = ‘620x’
case image_container_width
when ‘small’
assign product_image_width = ‘medium-up–two-fifths’
assign product_description_width = ‘medium-up–three-fifths’
assign product_image_size = ‘480x’
when ‘medium’
assign product_image_width = ‘medium-up–one-half’
assign product_description_width = ‘medium-up–one-half’
assign product_image_size = ‘620x’
when ‘large’
assign product_image_width = ‘medium-up–three-fifths’
assign product_description_width = ‘medium-up–two-fifths’
assign product_image_size = ‘740x’
endcase
-%}
{%- render ‘product-template-variables’, product: product, current_variant: current_variant -%}
{%- render ‘product-images’,
section_id: section_id,
product: product,
product_image_type: product_image_type,
product_zoom_enable: product_zoom_enable,
product_zoom_size: product_zoom_size,
product_image_size: product_image_size,
isModal: isModal,
video_looping: video_looping,
video_style: video_style
-%}
{%- if settings.vendor_enable -%}
{{ product.vendor }}
{%- endif -%}
{%- if sku_enable -%}
{%- if current_variant.sku -%}
{{ current_variant.sku }}
{%- endif -%}
{%- endif -%}
{%- if isModal -%}
{{ product.title }}
{%- else -%}
{{ product.title }}
{%- endif -%}
{%- if settings.enable_product_reviews -%}
{%- liquid
if isModal
assign review_link = product.url | within: collection | append: ‘#Reviews-’ | append: product.id
else
assign review_link = ‘#Reviews-’ | append: product.id
endif
-%}
{%- endif -%}
{%- if product.compare_at_price_max > product.price -%}
{%- liquid
assign hide_sale_price = true
if current_variant.compare_at_price
assign hide_sale_price = false
endif
-%}
{{ ‘products.general.regular_price’ t }}
{%- if current_variant.compare_at_price > current_variant.price -%}
{{ current_variant.compare_at_price | times:1.20 | money }}
{%- endif -%}
{{ ‘products.general.sale_price’ | t }}
{%- else -%}
{{ ‘products.general.regular_price’ | t }}
{%- endif -%}
{{ current_variant.price money }}
{%- if product_shipping_callout != blank -%}
{{ product_shipping_callout }}
{%- endif -%}
{%- capture unit_price_base_unit -%}
{%- if current_variant.unit_price_measurement -%}
{%- if current_variant.unit_price_measurement.reference_value != 1 -%}
{{ current_variant.unit_price_measurement.reference_value }}
{%- endif -%}
{{ current_variant.unit_price_measurement.reference_unit }}
{%- endif -%}
{%- endcapture -%}
{{ current_variant.unit_price money }}/{{ unit_price_base_unit }}
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}
{%- if shop.taxes_included -%} {{ 'products.product.include_taxes' | t }} {%- endif -%} {%- if shop.shipping_policy.body != blank -%} {{ 'products.product.shipping_policy_html' | t: link: shop.shipping_policy.url }} {%- endif -%}{%- endif -%}
{%- if inventory_enable or inventory_transfers_enable -%}
{%- assign variants_with_inventory_tracking = product.variants | where: ‘inventory_management’, ‘shopify’ -%}
{%- liquid
assign inventory_visible = false
if inventory_enable and current_variant.inventory_management == ‘shopify’
if current_variant.inventory_quantity <= inventory_threshold and current_variant.inventory_quantity >= 0
assign inventory_visible = true
endif
endif
if current_variant.inventory_quantity == 0 or current_variant.inventory_policy == ‘continue’
assign inventory_visible = false
endif
-%}
{%- if inventory_enable -%}
{%- if current_variant.available -%}
{{ ‘products.product.stock_label’ | t: count: current_variant.inventory_quantity }}
{%- endif -%}
{%- endif -%}
{%- if inventory_transfers_enable -%}
{%- if current_variant.incoming and inventory_visible == false -%}
{%- if current_variant.next_incoming_date -%}
{%- assign date = current_variant.next_incoming_date | date: format: ‘date’ -%}
{%- if current_variant.available -%}
{{ ‘products.product.will_not_ship_until’ | t: date: date }}
{%- else -%}
{{ ‘products.product.will_be_in_stock_after’ | t: date: date }}
{%- endif -%}
{%- else -%}
{{ ‘products.product.waiting_for_stock’ | t }}
{%- endif -%}
{%- endif -%}
{%- endif -%}
{%- endif -%}
{%- unless isModal -%}
{% comment %}
Shopify’s product form attaches a number of tracking
scripts that cause slower load times and false statistics.
Quick view modals request these on-demand.
{% endcomment %}
{%- render ‘product-form’,
section_id: section_id,
product: product,
current_variant: current_variant,
variant_type: variant_type,
variant_labels_enable: variant_labels_enable,
quantity_enable: quantity_enable,
enable_payment_button: enable_payment_button
-%}
{%- else -%}
{%- if product.options.size > 0 -%}
{%- for i in (1..product.options.size) -%}
{%- endfor -%}
{%- endif -%}
{%- endunless -%}
{%- if settings.trust_image != blank -%}
{%- assign img_url = settings.trust_image | img_url: ‘1x1’ | replace: ‘1x1.', '{width}x.’ -%}
{%- endif -%}
{%- if surface_pickup_enable -%}
{%- endif -%}
{%- if settings.additional_content_style == ‘expandable’ -%}
{%- render ‘product-additional-content’, product: product, section_id: section_id -%}
{%- else -%}
{%- render ‘product-additional-tabs’, product: product, section_id: section_id -%}
{%- endif -%}
{%- if social_enable -%}
{%- render ‘social-sharing’, share_title: product.title, share_permalink: product.url, share_image: product -%}
{%- endif -%}
Please check back in an hour or so
Please copy and paste this
Show More
{%- render 'product-template-variables', product: product, current_variant: current_variant -%}
{%- render 'product-images', section_id: section_id, product: product, product_image_type: product_image_type, product_zoom_enable: product_zoom_enable, product_zoom_size: product_zoom_size, product_image_size: product_image_size, isModal: isModal, video_looping: video_looping, video_style: video_style -%}
{%- if settings.vendor_enable -%}
{{ product.vendor }}
{%- endif -%} {%- if sku_enable -%}
{%- if current_variant.sku -%} {{ current_variant.sku }} {%- endif -%}
{%- endif -%} {%- if isModal -%}
{{ product.title }}
{%- else -%}# {{ product.title }}{%- endif -%} {%- if settings.enable_product_reviews -%} {%- liquid if isModal assign review_link = product.url | within: collection | append: '#Reviews-' | append: product.id else assign review_link = '#Reviews-' | append: product.id endif -%} {%- endif -%}
{%- if product.compare_at_price_max > product.price -%} {%- liquid assign hide_sale_price = true if current_variant.compare_at_price assign hide_sale_price = false endif -%} {{ 'products.general.regular_price' | t }} {%- if current_variant.compare_at_price > current_variant.price -%} {{ current_variant.compare_at_price | money }} {%- endif -%} {{ 'products.general.sale_price' | t }} {%- else -%} {{ 'products.general.regular_price' | t }} {%- endif -%} {{ current_variant.price | money }} {%- if product_shipping_callout != blank -%} {{ product_shipping_callout }} {%- endif -%}
{%- capture unit_price_base_unit -%} {%- if current_variant.unit_price_measurement -%} {%- if current_variant.unit_price_measurement.reference_value != 1 -%} {{ current_variant.unit_price_measurement.reference_value }} {%- endif -%} {{ current_variant.unit_price_measurement.reference_unit }} {%- endif -%} {%- endcapture -%} {{ current_variant.unit_price | money }}/{{ unit_price_base_unit }}
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}<small>{%- if shop.taxes_included -%} {{ 'products.product.include_taxes' | t }} {%- endif -%} {%- if shop.shipping_policy.body != blank -%} {{ 'products.product.shipping_policy_html' | t: link: shop.shipping_policy.url }} {%- endif -%} </small>
{%- endif -%} {%- if inventory_enable or inventory_transfers_enable -%} {%- assign variants_with_inventory_tracking = product.variants | where: 'inventory_management', 'shopify' -%} {%- liquid assign inventory_visible = false if inventory_enable and current_variant.inventory_management == 'shopify' if current_variant.inventory_quantity <= inventory_threshold and current_variant.inventory_quantity >= 0 assign inventory_visible = true endif endif if current_variant.inventory_quantity == 0 or current_variant.inventory_policy == 'continue' assign inventory_visible = false endif -%} {%- if inventory_enable -%}
{%- if current_variant.available -%} {{ 'products.product.stock_label' | t: count: current_variant.inventory_quantity }} {%- endif -%}
{%- endif -%} {%- if inventory_transfers_enable -%}{%- if current_variant.incoming and inventory_visible == false -%} {%- if current_variant.next_incoming_date -%} {%- assign date = current_variant.next_incoming_date | date: format: 'date' -%} {%- if current_variant.available -%} {{ 'products.product.will_not_ship_until' | t: date: date }} {%- else -%} {{ 'products.product.will_be_in_stock_after' | t: date: date }} {%- endif -%} {%- else -%} {{ 'products.product.waiting_for_stock' | t }} {%- endif -%} {%- endif -%}
{%- endif -%} {%- endif -%}
{%- unless isModal -%} {% comment %} Shopify's product form attaches a number of tracking scripts that cause slower load times and false statistics. Quick view modals request these on-demand. {% endcomment %} {%- render 'product-form', section_id: section_id, product: product, current_variant: current_variant, variant_type: variant_type, variant_labels_enable: variant_labels_enable, quantity_enable: quantity_enable, enable_payment_button: enable_payment_button -%} {%- else -%}{%- if product.options.size > 0 -%} {%- for i in (1..product.options.size) -%}
{%- endfor -%} {%- endif -%}
{%- endunless -%} {%- if settings.trust_image != blank -%}
{%- assign img_url = settings.trust_image | img_url: '1x1' | replace: '_1x1.', '_{width}x.' -%}
{%- endif -%} {%- if surface_pickup_enable -%}
{%- endif -%} {%- if settings.additional_content_style == 'expandable' -%} {%- render 'product-additional-content', product: product, section_id: section_id -%} {%- else -%} {%- render 'product-additional-tabs', product: product, section_id: section_id -%} {%- endif -%} {%- if social_enable -%} {%- render 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product -%} {%- endif -%}
Thank you, that did the job with the price! It’s just that the image on the product page is huge now and covers almost the whole screen, rather than being on the left side of the text?
Kindly check if first block of code starting with {% - liquid is properly pasted
yes all entered correctly
Show More
I am having the same issue and was wondering if you could assist and see if there’s anything off in the code? Thank you in advance
Here is the code from product-template.liquid in Sections.
{% comment %}
** Product - default view **
- Product template
{% endcomment %}
{% if collection.previous_product or collection.next_product or section.settings.product_breadcrumb %}
{% if collection.previous_product or collection.next_product %}
{% if collection.previous_product %}
{{ ‘products.general.previous_product_html’ | t }}
{% endif %}
{% if collection.previous_product and collection.next_product %} | {% endif %}
{% if collection.next_product %}
{{ ‘products.general.next_product_html’ | t }}
{% endif %}
{% endif %}
{% if section.settings.product_breadcrumb %}
{% render ‘product__breadcrumb’ %}
{% endif %}
{% endif %}
{% comment %}Check to see if sidebar should be enabled{% endcomment %}
{% if section.blocks.size > 0 %}
{% assign sidebar = true %}
{% else %}
{% assign sidebar = false %}
{% endif %}
{% if sidebar %}
{% render ‘sidebar’ %}
{% else %}
{% endif %}
{% render ‘product-images’,
product: product,
video_looping: section.settings.video_looping,
set_product_height: section.settings.set_product_height
%}
{% assign collection_handles = product.collections | map: ‘handle’ %}
{% assign variant = product.selected_or_first_available_variant %}
{% if product.available %}
{% if settings.sale_banner_enabled and product.compare_at_price_max > product.price %}
{{ ‘collections.general.sale’ | t }}
{% endif %}
{% endif %}
{% if collection_handles contains ‘new’ %}
{{ ‘collections.general.new’ | t }}
{% endif %}
{% if collection_handles contains ‘pre-order’ %}
{{ ‘collections.general.pre_order’ | t }}
{% endif %}
{% if section.settings.display_vendor %}
{{ product.vendor | link_to_vendor }}
{% endif %}
{% if variant.sku != blank and section.settings.display_sku %}
{{ variant.sku }}
{% endif %}
{{ product.title }}
{% if section.settings.enable_shopify_product_badges and settings.enable_shopify_review_comments %}
{% endif %}
{% assign product_tags = product.tags | join: ’ ’ %}
{% if product_tags contains ‘meta-size-chart-’ %}
{% for tag in product.tags %}
{% if tag contains ‘meta-size-chart-’ %}
{{ ‘products.product.size_chart’ | t }}
{% render ‘popup-size-chart’, product_id: product.id %}
{% endif %}
{% endfor %}
{% elsif settings.size_chart != blank %}
{{ ‘products.product.size_chart’ | t }}
{% endif %}
{% if collection_handles contains ‘coming-soon’ %}
{{ ‘collections.general.coming_soon’ | t }}
{% else %}
{% unless product.available == false and settings.display_price == false %}
{% if variant.price > 0 %}
{% render ‘price-element’, price: variant.price %}
{% else %}
{{ settings.free_price_text }}
{% endif %}
{% if variant.price < variant.compare_at_price %}
{% render ‘price-element’, price: variant.compare_at_price %}
{% endif %}
{% if section.settings.display_savings %}
{% if variant.price < variant.compare_at_price %}
{{ ‘products.product.savings’ | t }} {{ variant.compare_at_price | minus: variant.price | times: 100 | divided_by: variant.compare_at_price }}% ({% assign compare_at = variant.compare_at_price | minus: variant.price %}{% render ‘price-element’, price: compare_at %})
{% endif %}
{% endif %}
{% endunless %}
{% if variant.available == false %}{{ settings.sold_out_text }}{% endif %}
{% endif %}
{% if section.settings.product_description_position == “top” %}
{% if product.description != blank %}
{{ product.description | split: ‘’ | first }}
{% endif %}
{% endif %}
{% unless collection_handles contains ‘coming-soon’ %}
{% render ‘product-form’,
context: ‘product’,
collection_handles: collection_handles
%}
{% render ‘product-notify-me’, product: product %}
{% endunless %}
{% if section.settings.product_description_position == “bottom” %}
{% if product.description != blank %}
{{ product.description | split: ‘’ | first }}
{% endif %}
{% endif %}
{% if section.settings.review_position == “next_to_gallery” %}
{{ product.metafields.spr.reviews }}
{% endif %}
{% if section.settings.display_collections or section.settings.display_tags or section.settings.display_type %}
{% if section.settings.display_collections %}
{{ ‘products.product.collections’ | t }}:
{% for col in product.collections %}
{{ col.title }}{% unless forloop.last %},{% endunless %}
{% endfor %}
{% endif %}
{% if section.settings.display_type %}
{{ ‘products.product.product_types’ | t }}:
{{ product.type | link_to_type }}
{% endif %}
{% if section.settings.display_tags %}
{% for tag in product.tags %}
{% if forloop.first %}
{{ ‘products.product.tags’ | t }}:
{% endif %}
{% unless tag contains ‘meta-’ %}
{{ tag }}{% unless forloop.last %},{% endunless %}
{% endunless %}
{% endfor %}
{% endif %}
{% endif %}
{% if section.settings.display_social_buttons %}
{% render ‘social-buttons’, context: ‘product’ %}
{% endif %}
{% if product.description contains “” %}
{{ product.description | split: ‘’ | last }}
{% endif %}
{% if section.settings.review_position == “below_gallery” %}
{{ product.metafields.spr.reviews }}
{% endif %}
{% if sidebar %}
{% if section.settings.display_recently_viewed %}
{% include ‘include-recently-viewed’ %}
{% endif %}
{% else %}
{% if section.settings.display_recently_viewed %}
{% include ‘include-recently-viewed’ %}
{% endif %}
{% endif %}
{% if section.settings.set_product_height %}
{% style %}
.gallery-wrap model-viewer {
min-height: {{ section.settings.product_height }}px;
}
.gallery-wrap .product_gallery img,
.gallery-wrap .product_gallery .plyr–html5 video,
.gallery-wrap .product_gallery .plyr–youtube {
max-height: {{ section.settings.product_height }}px;
}
{% endstyle %}
{% endif %}
{% comment %} Shopify-XR {% endcomment %}
{% if product.media %}
{% endif %}
{% schema %}
{
“name”: “Product”,
“class”: “product-template”,
“settings”: [
{
“type”: “header”,
“content”: “Product gallery”
},
{
“type”: “checkbox”,
“id”: “product_thumbs”,
“label”: “Show thumbnails”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “gallery_arrows”,
“label”: “Show arrows”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “enable_product_lightbox”,
“label”: “Enable lightbox”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “activate_zoom”,
“label”: “Magnify product images on hover”
},
{
“type”: “range”,
“id”: “slideshow_speed”,
“label”: “Gallery speed”,
“min”: 0,
“max”: 6,
“unit”: “sec”,
“default”: 0,
“info”: “Set to 0 to disable autoplay.”
},
{
“type”: “select”,
“id”: “slideshow_animation”,
“label”: “Transition”,
“options”: [
{
“value”: “slide”,
“label”: “Slide”
},
{
“value”: “fade”,
“label”: “Fade”
}
],
“default”: “slide”
},
{
“type”: “select”,
“id”: “thumbnail_position”,
“label”: “Thumbnails”,
“default”: “bottom”,
“options”: [
{
“value”: “bottom”,
“label”: “Bottom”
},
{
“value”: “left”,
“label”: “Left”
},
{
“value”: “right”,
“label”: “Right”
}
]
},
{
“type”: “checkbox”,
“id”: “enable_thumbnail_slider”,
“label”: “Enable thumbnail slider”,
“default”: true
},
{
“type”: “header”,
“content”: “Product information”
},
{
“type”: “checkbox”,
“id”: “display_vendor”,
“label”: “Show vendor”
},
{
“type”: “checkbox”,
“id”: “product_breadcrumb”,
“label”: “Show breadcrumb links”
},
{
“type”: “checkbox”,
“id”: “display_sku”,
“label”: “Show SKU”
},
{
“type”: “checkbox”,
“id”: “display_collections”,
“label”: “Show collections”
},
{
“type”: “checkbox”,
“id”: “display_type”,
“label”: “Show type”
},
{
“type”: “checkbox”,
“id”: “display_tags”,
“label”: “Show tags”
},
{
“type”: “checkbox”,
“id”: “display_social_buttons”,
“label”: “Show social media share icons”,
“default”: true
},
{
“type”: “radio”,
“id”: “product_description_position”,
“label”: “Description position”,
“options”: [
{
“value”: “top”,
“label”: “Above product form”
},
{
“value”: “bottom”,
“label”: “Below product form”
}
]
},
{
“type”: “checkbox”,
“id”: “display_savings”,
“label”: “Show price savings”,
“default”: true
},
{
“type”: “header”,
“content”: “Dynamic checkout button”
},
{
“type”: “checkbox”,
“id”: “show_payment_button”,
“label”: “Show dynamic checkout button”,
“default”: true,
“info”: “Each customer will see their preferred payment method from those available on your store, such as PayPal or Apple Pay. Learn more”
},
{
“type”: “header”,
“content”: “Media”,
“info”: “Learn more about media types”
},
{
“type”: “radio”,
“id”: “product_images_position”,
“label”: “Media position”,
“options”: [
{
“value”: “left”,
“label”: “Left”
},
{
“value”: “right”,
“label”: “Right”
}
]
},
{
“type”: “checkbox”,
“id”: “set_product_height”,
“label”: “Set height of product media”,
“default”: false
},
{
“type”: “range”,
“id”: “product_height”,
“label”: “Product media height”,
“min”: 200,
“max”: 800,
“step”: 10,
“default”: 500,
“unit”: “px”
},
{
“type”: “checkbox”,
“id”: “video_looping”,
“label”: “Enable video looping”,
“default”: false
},
{
“type”: “header”,
“content”: “Product reviews”
},
{
“type”: “paragraph”,
“content”: “Reviews app must be enabled. Learn more”
},
{
“type”: “checkbox”,
“id”: “enable_shopify_product_badges”,
“label”: “Display star rating on product”,
“default”: false
},
{
“type”: “radio”,
“id”: “review_position”,
“label”: “Reviews position”,
“default”: “next_to_gallery”,
“options”: [
{
“value”: “next_to_gallery”,
“label”: “In product description area”
},
{
“value”: “below_gallery”,
“label”: “Below image/description”
}
]
},
{
“type”: “header”,
“content”: “Recently viewed products”
},
{
“type”: “paragraph”,
“content”: “To test the recently viewed products, view your online store outside of the Editor and visit multiple product pages. Learn more”
},
{
“type”: “checkbox”,
“id”: “display_recently_viewed”,
“label”: “Show recently viewed products”,
“default”: false
},
{
“type”: “text”,
“id”: “rv_title”,
“label”: “Title”,
“default”: “Recently Viewed Items”
},
{
“type”: “radio”,
“id”: “rv_products_style”,
“label”: “Layout”,
“default”: “grid”,
“options”: [
{
“value”: “slider”,
“label”: “Slider”
},
{
“value”: “grid”,
“label”: “Grid”
}
]
},
{
“type”: “range”,
“id”: “rv_max_display”,
“label”: “Products limit”,
“min”: 3,
“max”: 10,
“step”: 1,
“default”: 4
},
{
“type”: “range”,
“id”: “rv_per”,
“label”: “Products per row”,
“min”: 3,
“max”: 5,
“step”: 1,
“default”: 4
},
{
“type”: “header”,
“content”: “Sidebar”
},
{
“type”: “paragraph”,
“content”: “Create a sidebar by adding content blocks.”
},
{
“type”: “checkbox”,
“id”: “toggle”,
“label”: “Toggle sidebar content”,
“default”: false
}
],
“blocks”: [
{
“type”: “filter_by_collection”,
“name”: “Collection list”,
“limit”: 1
},
{
“type”: “menu”,
“name”: “Menu”,
“settings”: [
{
“type”: “link_list”,
“id”: “custom_menu_linklist”,
“label”: “Menu”
}
]
},
{
“type”: “page”,
“name”: “Page”,
“settings”: [
{
“type”: “page”,
“id”: “content_page”,
“label”: “Page”
}
]
},
{
“type”: “recently_viewed”,
“name”: “Recently viewed products”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “To test the recently viewed products, view your online store outside of the Editor and visit multiple product pages. Learn more”
},
{
“type”: “text”,
“id”: “sidebar_rv_title”,
“label”: “Title”,
“default”: “Recently Viewed”
},
{
“type”: “range”,
“id”: “sidebar_rv_per”,
“label”: “Products limit”,
“min”: 1,
“max”: 4,
“step”: 1,
“default”: 3
}
]
},
{
“type”: “filter_by_tag”,
“name”: “Tag list”,
“limit”: 1
},
{
“type”: “text”,
“name”: “Text”,
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: “Heading”,
“default”: “Heading”
},
{
“type”: “richtext”,
“id”: “text”,
“label”: “Text”,
“default”: "
Text area can be used for special announcements or general information.
"
}
]
},
{
“type”: “filter_by_type”,
“name”: “Type list”,
“limit”: 1
},
{
“type”: “filter_by_vendor”,
“name”: “Vendor list”,
“limit”: 1
}
],
“default”: {
“settings”: {
}
}
}
{% endschema %}
Show More
Dear Sir! Can you help us here ! Our prices showing wrong on checkout its change to something which is not VAT EXCL . not vat INCLUDED… its change to number we dont know from where :(((((
Will be happy to pay for solution!!!Thank you
our code
{% if settings.display_sidebar_detail_page %}
{% include ‘product-sidebar’ %}
{% endif %}
{%comment%}
{% if settings.display_sidebar_detail_page %}col-xs-9 {% endif %}
{%endcomment%}
{% comment %}
{% if product.images.size > 0 %}
{% for image in product.images %}
{% endfor %}
{% endif %}
{% endcomment %}
{% for image in product.images %}
{% if forloop.index == 1 %}
{% endif %}
{% endfor %}
{% for image in product.images %}
{% endfor %}
{% comment %}
{%if section.settings.show_img_vendor %}
{%else%}
{{ product.vendor | link_to_vendor }}
{%endif%}
{%if section.settings.title_secure_checkout != blank%}
{%include ‘multilang’ with section.settings.title_secure_checkout %}
{%include ‘multilang’ with section.settings.text_secure_checkout %}
{%endif%}
{% endcomment %}
{% if section.settings.display_product_type %}
{{ product.type }}
{% endif %}
{%if section.settings.show_img_vendor %}
{%else%}
{{ product.vendor | link_to_vendor }}
{%endif%}
{{section.settings.text_link_contact}}
{%if section.settings.display_product_sku%}
{{product.selected_or_first_available_variant.sku}}
{%endif%}
{% if section.settings.display_product_reviews %}
{% endif %}
{%if section.settings.display_product_bar%}
{%if product.selected_or_first_available_variant.barcode != bla %}
{{product.selected_or_first_available_variant.barcode}}
{%endif%}
{%endif%}
{% if product.description contains ‘[countdown]’ %}
{% assign count_down_first = product.description | split:‘[/countdown]’ | first %}
{% assign count_down_final = count_down_first | split:‘[countdown]’ | last %}
{% if settings.enable_multilang %}
{{ section.settings.text_countdown | split: ‘|’ | first }}
{{ section.settings.text_countdown | split: ‘|’ | last }}
{% else %}
{{ section.settings.text_countdown | split: ‘|’ | first }}
{% endif %}
{% endif %}
€
{% include ‘banana-stand-product-page-container’ %}
{% if section.settings.display_product_detail_share %}
{% endif %}
{%if section.settings.secure_img_checkout != blank %}
{{section.settings.secure_img_checkout | img_url:‘340x’ | img_tag: ‘Secure Checkout’, ‘secured-checkout’ }}
{%endif%}
{%if section.settings.freight_cost_text != blank %}
{{section.settings.freight_cost_text}}
{%endif%}
{%if section.settings.display_availability%}
{% if section.settings.text_availability != blank %}
{% if settings.enable_multilang %}
{% else %}
{% endif %}
{% endif %}
{% if product.selected_or_first_available_variant.inventory_management %}
{% assign first_inventory = product.selected_or_first_available_variant.inventory_quantity %}
{% if first_inventory > 0 %}
{{first_inventory}} {{ ‘products.product.in_stock’ | t }}
{% else %}
{{ ‘products.product.out_of_stock’ | t }}
{% endif %}
{% else %}
{{ ‘products.product.many_in_stock’ | t }}
{% endif %}
{%endif%}
{% if section.settings.display_product_detail_tag %}
{{ ‘blogs.article.tags’ | t }}:
{% for tag in product.tags %}
/
{{ tag }}
{% endfor %}
{% endif %}
{%comment%}
{% if section.settings.show_tab == ‘vertical’ %}
{% include ‘product-tab-vertical’ %}
{% endif %}{%endcomment%}
Product Infomation
{% if settings.enable_multilang %}
Details {{ product.title | split: ‘|’ | first }}
Details {{ product.title | split: ‘|’ | last }}
{% else %}
Details {{ product.title | split: ‘|’ | first }}
{% endif %}
{% if section.settings.display_product_detail_description %}
{% if settings.enable_multilang %}
{{ section.settings.product_description_title | split: ‘|’ | first }}
{{ section.settings.product_description_title | split: ‘|’ | last }}
{% else %}
{{ section.settings.product_description_title | split: ‘|’ | first }}
{% endif %}
{% if product.description contains ‘[countdown]’ or product.description contains ‘[Custom Product Tab]’ %}
{% assign des = product.description | split:'[/countdown]
’ | last %}
{% assign des = des | split:‘[Custom Product Tab]’ | first %}
{% if settings.enable_multilang %}
{{ des | split: ‘[lang2]’ | first }}
{{ des | split: ‘[lang2]’ | last }}
{% else %}
{{ des | split: ‘[lang2]’ | first }}
{% endif %}
{% else %}
{% if settings.enable_multilang %}
{{ product.description | split: ‘[lang2]’ | first }}
{{ product.description | split: ‘[lang2]’ | last }}
{% else %}
{{ product.description | split: ‘[lang2]’ | first }}
{% endif %}
{% endif %}
{% if section.settings.display_product_detail_share %}
{%include ‘multilang’ with section.settings.title_share_btn %}
{% endif %}
{% endif %}
{% if section.settings.display_custom_tab %}
{% if settings.enable_multilang %}
{{ section.settings.custom_tab_title | split: ‘|’ | first }}
{{ section.settings.custom_tab_title | split: ‘|’ | last }}
{% else %}
{{ section.settings.custom_tab_title | split: ‘|’ | first }}
{% endif %}
{% if settings.enable_multilang %}
{{ section.settings.custom_tab_content | split: ‘[lang2]’ | first }}
{{ section.settings.custom_tab_content | split: ‘[lang2]’ | last }}
{% else %}
{{ section.settings.custom_tab_content | split: ‘[lang2]’ | first }}
{% endif %}
{% endif %}
{% if section.settings.display_custom_tab_2 %}
{% if settings.enable_multilang %}
{{ section.settings.custom_tab_title_2 | split: ‘|’ | first }}
{{ ssection.ettings.custom_tab_title_2 | split: ‘|’ | last }}
{% else %}
{{ section.settings.custom_tab_title_2 | split: ‘|’ | first }}
{% endif %}
{% if product.description contains ‘[Custom Product Tab]’ %}
{% assign des = product.description | split:‘[Custom Product Tab]’ | last | split:‘[/Custom Product Tab]’ | first %}
{% if settings.enable_multilang %}
{{ des | split: ‘[lang2]’ | first }}
{{ des | split: ‘[lang2]’ | last }}
{% else %}
{{ des | split: ‘[lang2]’ | first }}
{% endif %}
{% endif %}
{% endif %}
{% if section.settings.display_product_reviews %}
{% if settings.enable_multilang %}
{{ section.settings.product_review_title | split: ‘|’ | first }}
{{ section.settings.product_review_title | split: ‘|’ | last }}
{% else %}
{{ section.settings.product_review_title | split: ‘|’ | first }}
{% endif %}
{{ product.metafields.spr.reviews }}
{%endif%}
{%comment%}
{% include ‘product-tab-horizontal’ %}
{%endcomment%}
{% if section.settings.display_related_products %}
{% if section.settings.related_products_type == “tags” %}
{% include ‘related-products-by-tags’ %}
{% else %}
{% include ‘related-products’ %}
{% endif %}
{% endif %}
{{product.variants|json}}
{{ ‘option_selection.js’ | shopify_asset_url | script_tag }}
{% schema %}
{
“name”: “Product pages”,
“settings”: [
{
“type”: “header”,
“content”: “Moreview”
},
{
“type”:“checkbox”,
“id”:“disable_thumbnail”,
“label”:“Disable thumbnails image more view”,
“default”:true
},
{
“type”:“header”,
“content”:“Content Left”
},
{
“type”: “image_picker”,
“id”: “image_logo”,
“label”: “Image logo”
},
{
“type”:“text”,
“id”:“text_link_contact”,
“label”:“Title Secure Checkout”,
“default”:“Your advantages”
},
{
“type”: “checkbox”,
“id”: “show_img_vendor”,
“label”: “Display Image Vendor?”,
“default”: false
},
{
“type”:“text”,
“id”:“title_secure_checkout”,
“label”:“Title Secure Checkout”,
“default”:“Your advantages”
},
{
“type”:“text”,
“id”:“text_secure_checkout”,
“label”:“Text Secure Checkout”,
“default”:“30 days free return”
},
{
“type”: “checkbox”,
“id”: “display_product_detail_share”,
“label”: “Display Product Share?”,
“default”: true
},
{
“type”:“text”,
“id”:“title_share_btn”,
“label”:“title Share Social”,
“default”:“Sharing is Cool”
},
{
“type”:“header”,
“content”:“Content right”
},
{
“type”: “checkbox”,
“id”: “display_product_type”,
“label”: “Display Product Type?”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “display_prev_next_product”,
“label”: “Display Prev/Next Product?”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “display_availability”,
“label”: “Display Availability?”,
“default”: true
},
{
“type”: “text”,
“id”: “text_availability”,
“label”: “Text Availability”,
“default”: “Availability”
},
{
“type”: “checkbox”,
“id”: “display_product_sku”,
“label”: “Display Product SKU?”,
“default”: true
},
{
“type”: “text”,
“id”: “product_sku_text”,
“label”: “Product SKU Text”,
“default”: “SKU:”
},
{
“type”: “checkbox”,
“id”: “display_product_bar”,
“label”: “Display Product Barcode?”,
“default”: true
},
{
“type”: “text”,
“id”: “product_bar_text”,
“label”: “Product Barcode Text”,
“default”: “Barcode:”
},
{
“type”: “text”,
“id”: “text_countdown”,
“label”: “Text Countdown”,
“default”: “Limited-Time Offers, End in:”
},
{
“type”: “checkbox”,
“id”: “use_color_swatch”,
“label”: “Use Color Swatch?”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “display_subtotal”,
“label”: “Display Subtotal?”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “display_product_detail_tag”,
“label”: “Display Tags?”,
“default”: true
},
{
“type”:“text”,
“id”:“ship_costs_text”,
“label”:“Shipping costs text”,
“default”:“incl. VAT plus”
},
{
“type”:“text”,
“id”:“ship_costs_text_url”,
“label”:“Shipping costs url text”,
“default”:“shipping costs”
},
{
“type”:“url”,
“id”:“page_url”,
“label”:“Page URL”
},
{
“type”:“text”,
“id”:“shipping_day”,
“label”:“Delivery time text”,
“default”:“Delivery Time Is 4-6 Working Day(s)”
},
{
“type”:“textarea”,
“id”:“shipping_day_after”,
“label”:“Delivery content bottom”,
“default”:“You will receive the information about the delivery dates to other countries once you have chosen your favoured country of dispatch.”
},
{
“type”:“textarea”,
“id”:“freight_cost_text”,
“label”:“Delivery Cost”
},
{
“type”:“image_picker”,
“id”:“secure_img_checkout”,
“label”:“Secured Image Checkout”
},
{
“type”: “color”,
“id”: “add_to_cart_btn_bgc”,
“label”: “Add to Cart Button Background Color”,
“default”:“#fff”
},
{
“type”: “color”,
“id”: “add_to_cart_btn_txtc”,
“label”: “Add to Cart Button Text Color”,
“default”:“#777”
},
{
“type”: “color”,
“id”: “add_to_cart_btn_bgc_h”,
“label”: “Add to Cart Button Background Color Hover”,
“default”:“#777”
},
{
“type”: “color”,
“id”: “add_to_cart_btn_txtc_h”,
“label”: “Add to Cart Button Text Color Hover”,
“default”:“#fff”
},
{
“type”: “checkbox”,
“id”: “display_product_detail_description”,
“label”: “Display Product Description?”,
“default”: true
},
{
“type”: “text”,
“id”: “product_description_title”,
“label”: “Product Description Title”,
“default”: “Product Description”
},
{
“type”: “checkbox”,
“id”: “display_custom_tab”,
“label”: “Display Shipping & Returns?”,
“default”: true
},
{
“type”: “text”,
“id”: “custom_tab_title”,
“label”: “Title Shipping & Returns”,
“default”: “Shipping & Returns”
},
{
“type”: “textarea”,
“id”: “custom_tab_content”,
“label”: “Shipping & Returns”
},
{
“type”: “checkbox”,
“id”: “display_custom_tab_2”,
“label”: “Display Custom Tab?”,
“default”: true
},
{
“type”: “text”,
“id”: “custom_tab_title_2”,
“label”: “Title Custom Tab”,
“default”: “Custom Tab”
},
{
“type”: “checkbox”,
“id”: “display_size_chart”,
“label”: “Display Size Chart?”,
“default”: true
},
{
“type”: “text”,
“id”: “custom_size_chart_title”,
“label”: “Custom Size Chart Title”,
“default”: “Size Chart”
},
{
“type”: “image_picker”,
“id”: “custom_size_chart”,
“label”: “Size Chart Image”
},
{
“type”: “textarea”,
“id”: “custom_size_chart_content”,
“label”: “Custom Size Chart Content”
},
{
“type”: “checkbox”,
“id”: “display_product_reviews”,
“label”: “Display Product Reviews?”,
“default”: true
},
{
“type”: “text”,
“id”: “product_review_title”,
“label”: “Product Reviews Title”,
“default”: “Customer Reviews”
},
{
“type”: “header”,
“content”: “Related Products”
},
{
“type”: “checkbox”,
“id”: “display_related_products”,
“label”: “Display Related Products?”,
“default”: true
},
{
“type”: “text”,
“id”: “related_products_title”,
“label”: “Title of related products block”,
“default”: “Related Products”
},
{
“type”: “text”,
“id”: “number_of_related_products”,
“label”: “Number of related products”,
“default”: “8”
},
{
“type”: “select”,
“id”: “related_products_per_row”,
“label”: “Products per row”,
“options”: [
{
“value”: “3”,
“label”: “3”
},
{
“value”: “4”,
“label”: “4”
},
{
“value”: “5”,
“label”: “5”
}
],
“default”: “5”
},
{
“type”: “radio”,
“id”: “related_products_type”,
“label”: “Type of related products”,
“options”: [
{
“value”: “tags”,
“label”: “By Tags”
},
{
“value”: “collection”,
“label”: “By Collection”
}
],
“default”: “collection”
},
{
“type”:“text”,
“id”:“delivery_date_for_available”,
“label”:“Type delivery dates for available”,
“default”:“1~5 days”
},
{
“type”:“text”,
“id”:“delivery_date_for_preorder”,
“label”:“Type delivery dates for preorder”,
“default”:“15~30 days”
}
],
“blocks”:[
{
“type”:“national”,
“name”:“National”,
“settings”:[
{
“type”:“image_picker”,
“id”:“image”,
“label”:“flag”
},
{
“type”:“text”,
“id”:“national”,
“label”:“National”
},
{
“type”:“text”,
“id”:“content”,
“label”:“Delivery time”,
“default”:“Delivery Time Is 3-5 Working Day(s)”
}
]
}
]
}
{% endschema %}