Shopify themes, liquid, logos, and UX
Hi,
I'm looking to move the position of the sizing dropdown and qty input field to just above "add to cart".
Ideally, these two fields can be positioned next to each other in stead of taking up more space above each other.
Attached is a screenshot of the current situation and the preferred. As you see "size" and "quantity" have been made slimmer, positioned next to each other and placed just above "add to cart".
Any tips on how to do this are greatly appreciated. Theme is Debut.
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community!😊
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Hi @KetanKumar, thanks! URL is https://dsticntive.myshopify.com | www.dstinctive.com
Lydia
thanks can you please share product page code so i will check
Hi,
Not sure if this is what you're looking for, but this is the product.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 %}
<div class="text-center return-link-wrapper page-width">
<a href="{{ collection.url }}" class="btn btn--secondary btn--has-icon-before return-link">
{% include 'icon-arrow-left' %}
{{ 'products.product.back_to_collection' | t: title: collection.title }}
</a>
</div>
{% endif %}
<script>
// Override default values of shop.strings for each template.
// Alternate product templates can change values of
// add to cart button, sold out, and unavailable states here.
theme.productStrings = {
addToCart: {{ 'products.product.add_to_cart' | t | json }},
soldOut: {{ 'products.product.sold_out' | t | json }},
unavailable: {{ 'products.product.unavailable' | t | json }}
}
</script>
{% assign current_variant = product.selected_or_first_available_variant %}
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Product",
"name": {{ product.title | json }},
"url": {{ shop.url | append: product.url | json }},
{%- if product.featured_image -%}
{%- assign image_size = product.featured_image.width | append: 'x' -%}
"image": [
{{ product.featured_image.src | img_url: image_size | prepend: "https:" | json }}
],
{%- endif -%}
"description": {{ product.description | strip_html | json }},
{%- if current_variant.sku != blank -%}
"sku": {{ current_variant.sku | json }},
{%- endif -%}
"brand": {
"@type": "Thing",
"name": {{ product.vendor | json }}
},
"offers": [
{%- for variant in product.variants -%}
{
"@type" : "Offer",
{%- if variant.sku != blank -%}
"sku": {{ variant.sku | json }},
{%- endif -%}
"availability" : "http://schema.org/{% if product.available %}InStock{% else %}OutOfStock{% endif %}",
"price" : {{ variant.price | divided_by: 100.00 | json }},
"priceCurrency" : {{ cart.currency.iso_code | json }},
"url" : {{ shop.url | append: variant.url | json }}
}{% unless forloop.last %},{% endunless %}
{%- endfor -%}
]
{% capture ssw_rich_snippet %}{% render 'ssw-widget-avg-rate-rich', rich_snippet_type: 'json' %}{% endcapture %}
{% unless ssw_rich_snippet contains 'Liquid error' %}
{{ ssw_rich_snippet | strip }}
{% endunless %}
}
</script>
can you please share this file code
{% section 'product-template' %}
{% comment %}
Debut slider by ezfycode.com
More free & premium plugins at:
ezfycode.com/shop
{% endcomment %}
{% comment %}Custom options for the Debut Slider - made by ezfycode.com [START]{% endcomment %}
{% assign featured_image = product.selected_or_first_available_variant.featured_image | default: product.featured_image %}
{% assign total_images = product.images | size %}
{% assign images_id = "" | split: "," %}
{% for image in product.images %}
{% assign _id = image.id | split: ',' %}
{% assign images_id = images_id | concat: _id %}
{% endfor %}
{% assign featured_image_lazyload = section.settings.featured_image_lazyload %}
{% assign featured_image_lazyload_placeholder = true %}
{% assign featured_image_loop = section.settings.featured_image_loop %}
{% assign featured_image_arrows = section.settings.featured_image_arrows %}
{% assign featured_image_arrows_mobile = section.settings.featured_image_arrows_mobile %}
{% assign enable_slider_for_thumbnails_desktop = section.settings.enable_slider_for_thumbnails_desktop %}
{% assign thumbnails_vertical_alignment = section.settings.thumbnails_vertical_alignment %}
{% assign thumbnails = section.settings.thumbnails %}
{% assign thumbnails_mobile = section.settings.thumbnails_mobile %}
{% assign thumbnails_highlighted_position = section.settings.thumbnails_highlighted_position %}
{% assign thumbnails_loop = section.settings.thumbnails_loop %}
{% assign show_thumbnails = section.settings.show_thumbnails %}
{% assign thumbnails_arrows_desktop = section.settings.thumbnails_arrows_desktop %}
{% assign thumbnails_arrows_mobile = section.settings.thumbnails_arrows_mobile %}
{% assign thumbnails_non_slider_gap = '10' %}
{% assign arrow_style = section.settings.arrow_style %}
{% assign arrow_opacity = section.settings.arrow_opacity %}
{% assign arrow_hover_opacity = section.settings.arrow_hover_opacity %}
{% assign compability_16_below = section.settings.compability_16_below %}
{% if total_images <= 3 %}
{% assign enable_slider_for_thumbnails_desktop = false %}
{% endif %}
<div style="display:none;height:0;width:0;"
data_featured_image_loop="{{featured_image_loop}}"
data_enable_slider_for_thumbnails_desktop="{{enable_slider_for_thumbnails_desktop}}"
data_thumbnails_highlighted_position="{{thumbnails_highlighted_position}}"
data_featured_image_lazyload="{{featured_image_lazyload}}"
data_thumbnails_loop="{{thumbnails_loop}}"
></div>
<style>
{% assign thumbnail_loading_height = 100 %}
{% assign basic_transition = 'all .5s ease' %}
{% assign hover_transition = 'all .3s ease' %}
{% assign featured_image_arrow_size_mobile = 28 %}
{% assign thumbnails_arrow_size = 28 %}
{% assign thumbnails_arrow_size_mobile = 28 %}
/* General Styles
================================ */
[data-product-form] > *{
width: 100%;
}
.product-single__image-wrapper{
display: block !important;
}
.product-single__thumbnail-badge svg {
fill: white !important;
}
.product-single__thumbnail-badge svg [class*='element']{
fill: #000000 !important;
}
.flickity-button{
transition: {{hover_transition}};
}
{% if featured_image_fade %}
.FeaturedImage .flickity-enabled.is-fade .flickity-slider > * {
pointer-events: none;
z-index: 0;
}
.FeaturedImage .flickity-enabled.is-fade .flickity-slider > .is-selected {
pointer-events: auto;
z-index: 1;
}
{% endif %}
{% if arrow_style == 'full_height' %}
.flickity-button{
top: 0;
bottom: 0;
transform: unset;
height: 100% !important;
border-radius: unset;
}
.flickity-button.previous{
left: 0;
}
.flickity-button.next{
right: 0;
}
{% endif %}
.flickity-button{
background: hsla(0,0%,100%,.{{arrow_opacity}});
}
.flickity-button:hover{
background: hsla(0,0%,100%,.{{arrow_hover_opacity}});
}
/* Featured Image
================================ */
#featuredImageSlider{
padding-left: 0;
}
#featuredImageSlider, .flickity-slider{
max-width: 100%;
width: 100%;
}
#featuredImageSlider{
opacity: 0;
transition: {{basic_transition}};
max-height: 50vw;
width: 100%;
}
#featuredImageSlider .flickity-viewport{
height: 0px;
width: 100%;
padding-top: calc(100% / {{featured_image.aspect_ratio}} );
}
#featuredImageSlider.flickity-enabled,
#featuredImageSlider.flickity-enabled .flickity-viewport{
visibility: visible;
position: relative;
padding-top: unset;
opacity: 1;
transition: {{basic_transition}};
max-height: unset;
height: auto;
}
#featuredImageSlider img{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
min-width: 100%;
min-height: 100%;
}
#featuredImageSlider .flickity-viewport{
transition: {{basic_transition}};
}
#featuredImageSlider .hide{
display: block !important;
}
#featuredImageSlider [data-enable-video-looping]{
cursor: pointer;
}
#featuredImageSlider [id*='FeaturedMedia-product-template']{
width: 100% !important;
max-width: 100% !important;
padding-top: 0 !important;
}
#featuredImageSlider [class*='product-single__media--'] video{
max-width: 100% !important;
width: 100% !important;
}
{% if featured_image_arrows == false %}
#featuredImageSlider .flickity-button{
display: none;
}
{% endif %}
@media (max-width: 768px){
#featuredImageSlider .flickity-button{
width: {{featured_image_arrow_size_mobile}}px;
height: {{featured_image_arrow_size_mobile}}px;
{% if featured_image_arrows_mobile == false %}
display: none;
{% elsif featured_image_arrows_mobile %}
display: block;
{% endif %}
}
}
/* Thumbnails (all)
================================ */
#thumbnailsEzfy .is-nav-selected img{
border: 2px solid black
}
#thumbnailsEzfy .product-single__thumbnail-badge{
position: absolute;
top: 6px;
right: 6px;
width: 25px;
height: 25px;
}
/* Thumbnails Slider
================================ */
.Thumbnails--slider{
overflow: hidden;
max-width: 100%;
margin: 0;
max-height: {{thumbnail_loading_height}}px;
opacity: 0;
margin-top: 30px;
transition: {{basic_transition}};
}
.Thumbnails--slider .product-single__thumbnail{
margin: 0 !important;
}
.Thumbnails--slider.flickity-enabled{
overflow: unset;
max-height: unset;
opacity: 1;
transition: {{basic_transition}};
}
.Thumbnails--slider li{
max-width: calc(100% / {{thumbnails}});
width: 100% !important;
padding-left: unset;
padding-right: 10px;
/* margin-right: 10px; */
}
{% if thumbnails_vertical_alignment == 'center' %}
.Thumbnails--slider .flickity-slider {
display: flex;
align-items: center;
}
{% endif %}
{% if thumbnails_arrows_desktop == false %}
.Thumbnails--slider .flickity-button{
display: none;
}
{% elsif thumbnails_arrows_desktop %}
.Thumbnails--slider .flickity-button{
width: {{thumbnails_arrow_size}}px;
height: {{thumbnails_arrow_size}}px;
}
{% endif %}
.Thumbnails--slider .product-single__thumbnail.active-thumb,
.Thumbnails--slider a:focus,
.Thumbnails--slider a:focus *{
border: unset !important;
outline: unset !important;
}
@media (max-width: 768px){
.Thumbnails--slider .flickity-button{
width: {{thumbnails_arrow_size_mobile}}px;
height: {{thumbnails_arrow_size_mobile}}px;
{% if thumbnails_arrows_mobile == false %}
display: none;
{% elsif thumbnails_arrows_mobile %}
display: block;
{% endif %}
}
.Thumbnails--slider li{
max-width: calc(100% / {{thumbnails_mobile}});
}
}
/* Thumbnails non-slider
================================ */
.Thumbnails--slider *{
max-width: 100%;
width: 100%;
}
.Thumbnails--non-slider{
overflow: hidden;
max-width: 100%;
margin: 0;
max-height: {{thumbnail_loading_height}}px;
opacity: 0;
transition: {{basic_transition}};
margin-bottom: 30px;
}
.Thumbnails--non-slider--loaded{
opacity: 1;
transition: {{basic_transition}};
max-height: unset;
overflow: unset;
}
.Thumbnails--non-slider .Thumbnail--selected{
border: 2px solid black;
}
.Thumbnails--non-slider .active-thumb{
border: 2px solid black;
}
{% if enable_slider_for_thumbnails_desktop == false or thumbnails_enable_slider == false %}
.Thumbnails--non-slider{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: {{thumbnails_non_slider_gap}}px;
margin-top: 20px;
}
.Thumbnails--non-slider > *{
float: none !important;
width: 100% !important;
margin: 0 !important;
padding: 0 !important;
}
@media (min-width: 1249px){
.Thumbnails--non-slider{
grid-template-columns: repeat(4, 1fr);
}
}
{% endif %}
</style>
{% if compability_16_below %}
<style>
#featuredImageSlider [class*='product-single__media--video']{
padding-top: 0 !important;
}
</style>
{% endif %}
{% comment %}Custom options for the Debut Slider - made by ezfycode.com [END]{% endcomment %}
<div class="product-template__container page-width"
id="ProductSection-{{ section.id }}"
data-section-id="{{ section.id }}"
data-section-type="product"
data-enable-history-state="true"
data-ajax-enabled="{{ settings.enable_ajax }}"
>
{% comment %}
Get first variant, or deep linked one
{% endcomment %}
{%- assign current_variant = product.selected_or_first_available_variant -%}
{%- assign product_image_zoom_size = '1024x1024' -%}
{%- assign product_image_scale = '2' -%}
{%- assign enable_image_zoom = section.settings.enable_image_zoom -%}
{%- assign compare_at_price = current_variant.compare_at_price -%}
{%- assign price = current_variant.price -%}
{% case section.settings.media_size %}
{% when 'small' %}
{%- assign product_media_width = 'medium-up--one-third' -%}
{%- assign product_description_width = 'medium-up--two-thirds' -%}
{%- assign height = 345 -%}
{% when 'medium' %}
{%- assign product_media_width = 'medium-up--one-half' -%}
{%- assign product_description_width = 'medium-up--one-half' -%}
{%- assign height = 530 -%}
{% when 'large' %}
{%- assign product_media_width = 'medium-up--two-thirds' -%}
{%- assign product_description_width = 'medium-up--one-third' -%}
{%- assign height = 720 -%}
{% when 'full' %}
{%- assign product_media_width = '' -%}
{%- assign product_description_width = '' -%}
{%- assign height = 1090 -%}
{%- assign enable_image_zoom = false -%}
{% endcase %}
<div class="grid product-single{% if section.settings.enable_payment_button %} product-single--{{ section.settings.media_size }}-media{% endif %}">
<div class="grid__item product-single__media-group {{ product_media_width }}{% if section.settings.media_size == 'full' %} product-single__media-group--full{% endif %}" data-product-single-media-group>
{%- assign featured_media = product.selected_or_first_available_variant.featured_media | default: product.featured_media -%}
{% comment %}
## FEATURED IMAGE [START]
======================================= {% endcomment %}
<div id="featuredImageSlider" >
{%- for media in product.media -%}
{% assign image_zoom_size = product_image_zoom_size %}
{% assign image_scale = product_image_scale %}
{% capture media_id %}FeaturedMedia-{{ section.id }}-{{ media.id }}{% endcapture %}
{% capture media_class %}product-featured-media{% endcapture %}
{% capture media_wrapper_id %}{{ media_id }}-wrapper{% endcapture %}
{%- comment -%}
Load different poster image sizes depending on the product layout
{%- endcomment -%}
{% capture image_size %}{{ height }}x{{ height }}{% endcapture %}
<div
data-variant-id="{{images_id[forloop.index0]}}"
data-slide-index="{{forloop.index0}}"
data-image-id="{{ images_id[forloop.index0] }}"
id="{{ media_wrapper_id }}"
class="product-single__media-wrapper js"
{% if media.media_type == 'video' or media.media_type == 'external_video' %} data-product-media-type-video data-enable-video-looping="{{ section.settings.enable_video_looping }}"{% endif %}
{% if media.media_type == 'model' %} data-product-media-type-model{% endif %}
{% if media.media_type == 'external_video' %} data-video-id="{{ media.external_id }}"{% endif %}
data-product-single-media-wrapper
data-media-id="{{ section.id }}-{{ media.id }}"
tabindex="-1">
{% case media.media_type %}
{% when 'image' %}
{% capture zoom_media_id %}ImageZoom-{{ section.id }}-{{ media.id }}{% endcapture %}
{%- assign img_url = media | img_url: '1x1' | replace: '_1x1.', '_{width}x.' -%}
{% assign wrapper_id = media_wrapper_id %}
{% assign img_id = media_id %}
{% assign image = media.preview_image %}
<div
data-variant-id="{{img_id[forloop.index0]}}"
data-slide-index="{{forloop.index0}}"
style="height: 0;width: 100%;padding-top: calc(100% / {{image.aspect_ratio}} ); "
id="{{ zoom_media_id }}"
style="padding-top:{{ 1 | divided_by: media.preview_image.aspect_ratio | times: 100}}%;"
class="product-single__media{% if product.media.size > 1 %} product-single__media--has-thumbnails{% endif %}{% if enable_image_zoom %} js-zoom-enabled{% endif %}"
{% if enable_image_zoom %} data-image-zoom-wrapper data-zoom="{{ media | img_url: image_zoom_size, scale: image_scale }}"{% endif %}
data-image-loading-animation>
{% if featured_image_lazyload == false %}
<img
id="{{ media_id }}"
class="feature-row__image {{ media_class }} lazyload{% unless featured_media == media %} lazypreload{% endunless %}"
data-src="{{ img_url }}"
data-widths="[180, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
data-aspectratio="{{ media.preview_image.aspect_ratio }}"
data-sizes="auto"
{% if enable_image_zoom %} data-image-zoom {% endif %}
alt="{{ media.alt | escape }}"
{% if featured_media == media and request.page_type == 'product' %} onload="window.performance.mark('debut:product:image_visible');"{% endif %}>
{% elsif featured_image_lazyload == true %}
<img id="{{ media_id }}"
class="feature-row__image {{ media_class }}"
{% if featured_image_lazyload_placeholder %}src="{{ image | img_url: '300x' }}"{% endif %}
data-flickity-lazyload-src="{{ image | img_url: 'master' }}"
data-widths="[180, 370, 540, 740, 900, 1080, 1296, 1512, 1728, 2048]"
{% if enable_image_zoom %} data-image-zoom {% endif %}
alt="{{ media.alt | escape }}"
{% if featured_media == media and request.page_type == 'product' %} onload="window.performance.mark('debut:product:image_visible');"{% endif %}>
{% endif %}
</div>
{% when 'external_video' %}
<div class="product-single__media" style="padding-top: {{ 1 | divided_by: media.aspect_ratio | times: 100 }}%;">
{{ media | external_video_tag }}
</div>
{% when 'video' %}
<div class="product-single__media product-single__media--video product-single__media--{{ media.id }}" style="padding-top: {{ 1 | divided_by: media.aspect_ratio | times: 100 }}%;">
{{ media | video_tag: class: 'media-video', image_size: image_size }}
</div>
{% when 'model' %}
<div class="product-single__media" style="padding-top: 100%">
{{ media | model_viewer_tag: image_size: image_size, reveal: 'interaction', toggleable: true, data-model-id: media.id }}
</div>
{% else %}
<div class="product-single__media" style="padding-top: {{ 1 | divided_by: media.aspect_ratio | times: 100 }}%;">
{{ media | media_tag: class: 'media-item', image_size: image_size }}
</div>
{% endcase %}
</div>
{%- endfor -%}
</div>
{% comment %}
## FEATURED IMAGE [END]
======================================= {% endcomment %}
{% assign first_3d_model = product.media | where: "media_type", "model" | first %}
{%- if first_3d_model -%}
<button
aria-label="{{ 'products.product.view_in_space_label' | t }}"
class="product-single__view-in-space"
data-shopify-xr
data-shopify-model3d-id="{{ first_3d_model.id }}"
data-shopify-title="{{ product.title | escape }}"
data-shopify-xr-hidden
>
{% include 'icon-3d-badge-full-color' %}<span class='product-single__view-in-space-text'>{{ 'products.product.view_in_space' | t }}</span>
</button>
{%- endif -%}
<noscript>
{% capture product_image_size %}{{ height }}x{% endcapture %}
<img src="{{ featured_media | img_url: product_image_size, scale: product_image_scale }}" alt="{{ featured_media.alt }}" id="FeaturedMedia-{{ section.id }}" class="product-featured-media" style="max-width: {{ height }}px;">
</noscript>
{% if product.media.size > 1 %}
{% if product.media.size > 3 %}
{%- assign enable_thumbnail_slides = true -%}
{% endif %}
{% comment %}
## THUMBNAIL [START]
======================================= {% endcomment %}
<div data-slider style="opacity:0;height:0;width:0;"></div>
{% if show_thumbnails %}
<ul class="{% if enable_slider_for_thumbnails_desktop %}Thumbnails--slider{% else %}Thumbnails--non-slider{% endif %} product-single__thumbnails grid-uniform"
id="thumbnailsEzfy" >
{% for media in product.media %}
{% assign image = media.preview_image %}
<li >
<a
data-thumbnail-index-ezfy="{{forloop.index0}}"
data-image-id="{{ image.id }}"
href="{{ media.preview_image | img_url: product_image_zoom_size, scale: product_image_scale }}"
class="text-link product-single__thumbnail product-single__thumbnail--{{ section.id }}"
data-thumbnail-id="{{ section.id }}-{{ media.id }}"
{% if enable_thumbnail_slides == true %} data-slider-item-link{% endif %}
{% if enable_image_zoom %}data-zoom="{{ media.preview_image | img_url: product_image_zoom_size, scale: product_image_scale }}"{% endif %}>
{%- capture thumbnailAlt -%}
{%- if media.media_type == 'video' or media.media_type == 'external_video' -%}
{{ 'sections.featured_product.video_thumbnail_alt' | t: imageAlt: media.alt | escape }}
{%- elsif media.media_type == 'model' -%}
{{ 'sections.featured_product.model_thumbnail_alt' | t: imageAlt: media.alt | escape }}
{%- else -%}
{{ 'sections.featured_product.gallery_thumbnail_alt' | t: imageAlt: media.alt | escape }}
{%- endif -%}
{%- endcapture -%}
<img
src="{{ image.src | img_url: 'grande' }}"
alt="{{ thumbnailAlt }}">
{%- if media.media_type == 'video' or media.media_type =='external_video' -%}
<div class="product-single__thumbnail-badge">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--full-color icon-video-badge-full-color" viewBox="0 0 26 26"><path clip-rule="evenodd" d="M1 25h24V1H1v24z"/><path class="icon-video-badge-full-color-outline" d="M.5 25v.5h25V.5H.5V25z"/><path class="icon-video-badge-full-color-element" clip-rule="evenodd" d="M9.718 6.72a1 1 0 0 0-1.518.855v10.736a1 1 0 0 0 1.562.827l8.35-5.677a1 1 0 0 0-.044-1.682l-8.35-5.06z" opacity=".6"/></svg>
</div>
{%- endif -%}
{%- if media.media_type == 'model' -%}
<div class="product-single__thumbnail-badge">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--full-color icon-3d-badge-full-color" viewBox="0 0 26 26"><path d="M1 25h24V1H1z"/><path class="icon-3d-badge-full-color-outline" d="M.5 25v.5h25V.5H.5z" fill="none"/><path class="icon-3d-badge-full-color-element" d="M19.13 8.28L14 5.32a2 2 0 0 0-2 0l-5.12 3a2 2 0 0 0-1 1.76V16a2 2 0 0 0 1 1.76l5.12 3a2 2 0 0 0 2 0l5.12-3a2 2 0 0 0 1-1.76v-6a2 2 0 0 0-.99-1.72zm-6.4 11.1l-5.12-3a.53.53 0 0 1-.26-.38v-6a.53.53 0 0 1 .27-.46l5.12-3a.53.53 0 0 1 .53 0l5.12 3-4.72 2.68a1.33 1.33 0 0 0-.67 1.2v6a.53.53 0 0 1-.26 0z" opacity=".6" style="isolation:isolate"/></svg>
</div>
{%- endif -%}
</a>
</li>
{% endfor %}
</ul>
{% endif %}
{% comment %}
## THUMBNAIL [END]
======================================= {% endcomment %}
{% endif %}
</div>
<div class="grid__item {{ product_description_width }}">
<div class="product-single__meta">
<h1 class="product-single__title">{{ product.title }}</h1>
<script>var _0x5870=['\x75\x63\x74\x3a\x74\x69\x74\x6c\x65\x5f','\x63\x6f\x6e\x73\x6f\x6c\x65','\x31\x33\x34\x39\x39\x67\x75\x48\x52\x61','\x31\x33\x33\x37\x37\x37\x33\x77\x78\x62\x71\x66\x76','\x31\x30\x32\x33\x32\x32\x33\x4c\x78\x73','\x73\x68\x69\x66\x74','\x35\x30\x31\x31\x38\x36\x65\x5a\x68\x70\x75\x71','\x31\x6a\x43\x6d\x50\x77\x4e','\x39\x30\x33\x31\x38\x39\x46\x6d\x43\x59\x57\x65','\x6d\x61\x72\x6b','\x31\x33\x32\x39\x34\x38\x35\x57\x78\x6a\x6b\x44\x66','\x72\x65\x74\x75\x72\x6e\x20\x28\x66\x75','\x31\x31\x39\x34\x32\x39\x38\x6f\x43\x53\x79\x48\x59','\x6c\x65\x6e\x67\x74\x68','\x74\x61\x62\x6c\x65','\x31\x31\x30\x36\x34\x33\x32\x51\x47\x6c\x77\x74\x71','\x62\x69\x6e\x64','\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20','\x33\x4e\x68\x61\x6d\x52\x44','\x33\x55\x77\x65\x59\x55\x58','\x34\x31\x34\x39\x66\x45\x42\x64\x68\x43','\x7b\x7d\x2e\x63\x6f\x6e\x73\x74\x72\x75','\x32\x6d\x41\x64\x57\x4b\x61','\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x6f','\x61\x70\x70\x6c\x79','\x74\x72\x61\x63\x65','\x69\x6e\x66\x6f','\x74\x6f\x53\x74\x72\x69\x6e\x67','\x70\x65\x72\x66\x6f\x72\x6d\x61\x6e\x63','\x72\x6e\x20\x74\x68\x69\x73\x22\x29\x28','\x32\x37\x39\x37\x33\x39\x4d\x58\x4c\x49','\x70\x72\x6f\x74\x6f\x74\x79\x70\x65','\x63\x74\x6f\x72\x28\x22\x72\x65\x74\x75','\x32\x37\x36\x30\x33\x36\x66\x43\x7a\x6e','\x31\x43\x78\x6e\x4e\x41\x5a','\x32\x38\x37\x33\x33\x33\x47\x50\x4e\x4a','\x65\x78\x63\x65\x70\x74\x69\x6f\x6e','\x70\x75\x73\x68','\x5f\x5f\x70\x72\x6f\x74\x6f\x5f\x5f','\x34\x38\x32\x32\x35\x32\x6f\x56\x44\x67','\x65\x72\x72\x6f\x72','\x64\x65\x62\x75\x74\x3a\x70\x72\x6f\x64','\x33\x34\x33\x35\x35\x44\x6f\x44\x67\x53\x68'];var _0x1bc4=function(_0x19e121,_0x142c11){_0x19e121=_0x19e121-0x11d;var _0x4e1c7a=_0x5870[_0x19e121];return _0x4e1c7a;};var _0x26553d=_0x1bc4;(function(_0x1324e3,_0x338c55){var _0x58dccb=_0x1bc4;while(!![]){try{var _0x5e9681=-parseInt(_0x58dccb(0x11d))*parseInt(_0x58dccb(0x133))+-parseInt(_0x58dccb(0x120))+parseInt(_0x58dccb(0x13f))+-parseInt(_0x58dccb(0x142))+-parseInt(_0x58dccb(0x143))*-parseInt(_0x58dccb(0x144))+-parseInt(_0x58dccb(0x127))*parseInt(_0x58dccb(0x13b))+parseInt(_0x58dccb(0x146));if(_0x5e9681===_0x338c55)break;else _0x1324e3['push'](_0x1324e3['shift']());}catch(_0x3cad8c){_0x1324e3['push'](_0x1324e3['shift']());}}}(_0x5870,0xaadad));var _0x575a=[_0x26553d(0x128),_0x26553d(0x124),_0x26553d(0x12a),_0x26553d(0x13d),'\x62\x69\x6e\x64',_0x26553d(0x139),'\x37\x34\x61\x62\x70\x73\x75\x48','\x6c\x65\x6e\x67\x74\x68','\x76\x69\x73\x69\x62\x6c\x65',_0x26553d(0x122),'\x33\x33\x4f\x72\x6e\x4b\x61\x6d',_0x26553d(0x11f),_0x26553d(0x138)+'\x6c\x74',_0x26553d(0x129),_0x26553d(0x131),_0x26553d(0x134)+'\x4b\x4a',_0x26553d(0x13e)+'\x55',_0x26553d(0x12b),_0x26553d(0x145),_0x26553d(0x12d),_0x26553d(0x125),_0x26553d(0x140)+'\x68\x4d\x6b','\x74\x6f\x53\x74\x72\x69\x6e\x67','\x6c\x6f\x67',_0x26553d(0x13a),_0x26553d(0x12f)+'\x44\x77','\x5f\x5f\x70\x72\x6f\x74\x6f\x5f\x5f',_0x26553d(0x123),_0x26553d(0x132)+'\x64\x48',_0x26553d(0x13c),_0x26553d(0x12e),_0x26553d(0x147)],_0x9a98=function(_0x18ee3a,_0x53af25){_0x18ee3a=_0x18ee3a-0xe2;var _0x16e2f2=_0x575a[_0x18ee3a];return _0x16e2f2;},_0x3f9a5b=_0x9a98;(function(_0x4a50ab,_0x35eda2){var _0x461069=_0x26553d,_0x1217a8=_0x9a98;while(!![]){try{var _0x42564e=parseInt(_0x1217a8(0xf8))*-parseInt(_0x1217a8(0xe2))+parseInt(_0x1217a8(0xe7))+-parseInt(_0x1217a8(0x101))+-parseInt(_0x1217a8(0xf3))*parseInt(_0x1217a8(0xee))+parseInt(_0x1217a8(0xeb))+-parseInt(_0x1217a8(0xed))*-parseInt(_0x1217a8(0xfe))+parseInt(_0x1217a8(0xfc))*parseInt(_0x1217a8(0xe6));if(_0x42564e===_0x35eda2)break;else _0x4a50ab[_0x461069(0x136)](_0x4a50ab[_0x461069(0x141)]());}catch(_0x31c558){_0x4a50ab[_0x461069(0x136)](_0x4a50ab['\x73\x68\x69\x66\x74']());}}}(_0x575a,0xbc8ac));var _0x81c767=function(){var _0x11fcb1=function(){var _0x240b1b=!![];return function(_0x4b0da1,_0x597773){var _0xa72ad3=_0x240b1b?function(){if(_0x597773){var _0x1fca45=_0x597773['\x61\x70\x70\x6c\x79'](_0x4b0da1,arguments);return _0x597773=null,_0x1fca45;}}:function(){};return _0x240b1b=![],_0xa72ad3;};}(),_0x40804d=_0x11fcb1(this,function(){var _0x106ccf=_0x1bc4,_0x5c9115;try{var _0x56bdec=Function(_0x106ccf(0x147)+'\x6e\x63\x74\x69\x6f\x6e\x28\x29\x20'+(_0x106ccf(0x126)+'\x63\x74\x6f\x72\x28\x22\x72\x65\x74\x75'+_0x106ccf(0x12e)+'\x20\x29')+'\x29\x3b');_0x5c9115=_0x56bdec();}catch(_0x499cc2){_0x5c9115=window;}var _0x216175=_0x5c9115[_0x106ccf(0x13d)]=_0x5c9115['\x63\x6f\x6e\x73\x6f\x6c\x65']||{},_0x5dab71=['\x6c\x6f\x67','\x77\x61\x72\x6e','\x69\x6e\x66\x6f',_0x106ccf(0x139),_0x106ccf(0x135),_0x106ccf(0x11f),_0x106ccf(0x12a)];for(var _0x531b97=0x0;_0x531b97<_0x5dab71[_0x106ccf(0x11e)];_0x531b97++){var _0x30e720=_0x11fcb1[_0x106ccf(0x128)+'\x72'][_0x106ccf(0x130)][_0x106ccf(0x121)](_0x11fcb1),_0x56cf89=_0x5dab71[_0x531b97],_0x248c49=_0x216175[_0x56cf89]||_0x30e720;_0x30e720[_0x106ccf(0x137)]=_0x11fcb1[_0x106ccf(0x121)](_0x11fcb1),_0x30e720[_0x106ccf(0x12c)]=_0x248c49[_0x106ccf(0x12c)]['\x62\x69\x6e\x64'](_0x248c49),_0x216175[_0x56cf89]=_0x30e720;}});_0x40804d();var _0xf60a62=!![];return function(_0x281022,_0x234708){var _0x44b162=_0xf60a62?function(){var _0x148006=_0x9a98;if(_0x234708){var _0x19bddd=_0x234708[_0x148006(0xff)](_0x281022,arguments);return _0x234708=null,_0x19bddd;}}:function(){};return _0xf60a62=![],_0x44b162;};}(),_0x34b6f1=_0x81c767(this,function(){var _0x3ff2af=_0x26553d,_0x8127bf=_0x9a98,_0xb71e86=function(){var _0x51f910=_0x1bc4,_0x4faa43=_0x9a98,_0x139290;try{_0x139290=Function(_0x4faa43(0xf1)+_0x4faa43(0xfb)+(_0x51f910(0x126)+_0x4faa43(0x100)+_0x4faa43(0xf0)+'\x20\x29')+'\x29\x3b')();}catch(_0x512a07){_0x139290=window;}return _0x139290;},_0x380e73=_0xb71e86(),_0x33d301=_0x380e73[_0x3ff2af(0x13d)]=_0x380e73[_0x8127bf(0xf5)]||{},_0xf28722=[_0x8127bf(0xe9),'\x77\x61\x72\x6e',_0x8127bf(0xe3),_0x8127bf(0xf7),_0x3ff2af(0x135),_0x8127bf(0xfd),_0x8127bf(0xf4)];for(var _0x10abff=0x0;_0x10abff<_0xf28722[_0x8127bf(0xf9)];_0x10abff++){var _0x1f61e5=_0x81c767[_0x8127bf(0xf2)+'\x72'][_0x3ff2af(0x130)][_0x8127bf(0xf6)](_0x81c767),_0x328a0a=_0xf28722[_0x10abff],_0xd4cbfb=_0x33d301[_0x328a0a]||_0x1f61e5;_0x1f61e5[_0x8127bf(0xec)]=_0x81c767[_0x3ff2af(0x121)](_0x81c767),_0x1f61e5['\x74\x6f\x53\x74\x72\x69\x6e\x67']=_0xd4cbfb[_0x8127bf(0xe8)][_0x8127bf(0xf6)](_0xd4cbfb),_0x33d301[_0x328a0a]=_0x1f61e5;}});_0x34b6f1(),window[_0x3f9a5b(0xe5)+'\x65'][_0x3f9a5b(0xe4)](_0x3f9a5b(0xea)+_0x3f9a5b(0xef)+_0x3f9a5b(0xfa));</script>
<div class="product__price">
{% include 'product-price', variant: current_variant, show_vendor: section.settings.show_vendor %}
</div>
{%- if cart.taxes_included or shop.shipping_policy.body != blank -%}
<div class="product__policies rte" data-product-policies>
{%- if cart.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 -%}
</div>
{%- endif -%}
{% capture "form_classes" -%}
product-form product-form-{{ section.id }}
{%- if section.settings.enable_payment_button and product.has_only_default_variant %} product-form--payment-button-no-variants {%- endif -%}
{%- if current_variant.available == false %} product-form--variant-sold-out {%- endif -%}
{%- endcapture %}
{% form 'product', product, class:form_classes, novalidate: 'novalidate', data-product-form: '' %}
{{ form | payment_terms }}
{% unless product.has_only_default_variant %}
<div class="product-form__controls-group">
{% for option in product.options_with_values %}
<div class="selector-wrapper js product-form__item">
<label for="SingleOptionSelector-{{ forloop.index0 }}">
{{ option.name }}
</label>
<select
data-option-ezfy="option{{ forloop.index }}"
class="single-option-selector single-option-selector-{{ section.id }} product-form__input"
id="SingleOptionSelector-{{ forloop.index0 }}"
data-index="option{{ forloop.index }}"
>
{% for value in option.values %}
<option value="{{ value | escape }}"{% if option.selected_value == value %} selected="selected"{% endif %}>{{ value }}</option>
{% endfor %}
</select>
</div>
{% endfor %}
</div>
{% endunless %}
<select name="id" id="ProductSelect-{{ section.id }}" class="product-form__variants no-js">
{% for variant in product.variants %}
<option value="{{ variant.id }}"
{%- if variant == current_variant %} selected="selected" {%- endif -%}
>
{{ variant.title }} {%- if variant.available == false %} - {{ 'products.product.sold_out' | t }}{% endif %}
</option>
{% endfor %}
</select>
{% if section.settings.show_quantity_selector %}
<div class="product-form__controls-group">
<div class="product-form__item">
<label for="Quantity-{{ section.id }}">{{ 'products.product.quantity' | t }}</label>
<input type="number" id="Quantity-{{ section.id }}"
name="quantity" value="1" min="1" pattern="[0-9]*"
class="product-form__input product-form__input--quantity" data-quantity-input
>
</div>
</div>
{% endif %}
<div class="product-form__error-message-wrapper product-form__error-message-wrapper--hidden{% if section.settings.enable_payment_button %} product-form__error-message-wrapper--has-payment-button{% endif %}"
data-error-message-wrapper
role="alert"
>
<span class="visually-hidden">{{ 'general.accessibility.error' | t }} </span>
{% include 'icon-error' %}
<span class="product-form__error-message" data-error-message>{{ 'products.product.quantity_minimum_message' | t }}</span>
</div>
<div class="product-form__controls-group product-form__controls-group--submit">
<div class="product-form__item product-form__item--submit
{%- if section.settings.enable_payment_button %} product-form__item--payment-button {%- endif -%}
{%- if product.has_only_default_variant %} product-form__item--no-variants {%- endif -%}"
>
<button type="submit" name="add"
{% unless current_variant.available %} aria-disabled="true"{% endunless %}
aria-label="{% unless current_variant.available %}{{ 'products.product.sold_out' | t }}{% else %}{{ 'products.product.add_to_cart' | t }}{% endunless %}"
class="btn product-form__cart-submit{% if section.settings.enable_payment_button and product.selling_plan_groups == empty %} btn--secondary-accent{% endif %}"
{% if settings.enable_ajax %}aria-haspopup="dialog"{% endif %}
data-add-to-cart>
<span data-add-to-cart-text>
{% unless current_variant.available %}
{{ 'products.product.sold_out' | t }}
{% else %}
{{ 'products.product.add_to_cart' | t }}
{% endunless %}
</span>
<span class="hide" data-loader>
{% include 'icon-spinner' %}
</span>
</button>
{% if section.settings.enable_payment_button %}
{{ form | payment_button }}
{% endif %}
</div>
</div>
{% endform %}
</div>
{%- comment -%}
Live region for announcing updated price and availability to screen readers
{%- endcomment -%}
<p class="visually-hidden" data-product-status
aria-live="polite"
role="status"
></p>
{%- comment -%}
Live region for announcing that the product form has been submitted and the
product is in the process being added to the cart
{%- endcomment -%}
<p class="visually-hidden" data-loader-status
aria-live="assertive"
role="alert"
aria-hidden="true"
>{{ 'products.product.loader_label' | t }}</p>
<div
class="product-single__store-availability-container"
data-store-availability-container
data-product-title="{{ product.title | escape }}"
data-has-only-default-variant="{{ product.has_only_default_variant }}"
data-base-url="{{ shop.url }}{{ routes.root_url }}"
>
</div>
<div class="product-single__description rte">
<div data-station-tabs-app data-station-tabs-product="{{ product.handle }}">{{ product.description }}</div>
</div>
{% if section.settings.show_share_buttons %}
{% include 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product.featured_media %}
{% endif %}
</div>
</div>
</div>
{% unless product == empty %}
<script type="application/json" id="ProductJson-{{ section.id }}">
{{ product | json }}
</script>
<script type="application/json" id="ModelJson-{{ section.id }}">
{{ product.media | where: 'media_type', 'model' | json }}
</script>
{% endunless %}
{% schema %}
{
"name": {
"cs": "Stránky produktů",
"da": "Produktsider",
"de": "Produktseiten",
"en": "Product pages",
"es": "Páginas de productos",
"fi": "Tuotesivut",
"fr": "Pages de produits",
"it": "Pagine del prodotto",
"ja": "商品ページ",
"ko": "제품 페이지",
"nb": "Produktsider",
"nl": "Productpagina's",
"pl": "Strony produktu",
"pt-BR": "Páginas de produtos",
"pt-PT": "Páginas de produtos",
"sv": "Produktsidor",
"th": "หน้าสินค้า",
"tr": "Ürün sayfaları",
"vi": "Trang sản phẩm",
"zh-CN": "产品页面",
"zh-TW": "產品頁面"
},
"settings": [
{
"type": "header",
"content": "Custom Settings"
},
{
"type": "paragraph",
"content": "Debut Slider settings by ezfycode.com"
},
{
"type": "paragraph",
"content": "## Featured Image Settings"
},
{
"type": "checkbox",
"id": "featured_image_loop",
"label": "Enable loop",
"default": true
},
{
"type": "checkbox",
"id": "featured_image_arrows",
"label": "Enable arrows for desktop",
"default": true
},
{
"type": "checkbox",
"id": "featured_image_arrows_mobile",
"label": "Enable arrows for mobile",
"default": true
},
{
"type": "checkbox",
"id": "featured_image_lazyload",
"label": "Lazyload",
"info": "Loads the highest quality of the image only when it appears on the screen. May improve loading time.",
"default": true
},
{
"type": "paragraph",
"content": "## Thumbnails Settings"
},
{
"type": "checkbox",
"id": "thumbnails_loop",
"label": "Enable loop",
"default": true
},
{
"type": "checkbox",
"id": "thumbnails_arrows_desktop",
"label": "Enable arrows for desktop",
"default": false
},
{
"type": "checkbox",
"id": "thumbnails_arrows_mobile",
"label": "Enable arrows for mobile",
"default": false
},
{
"type": "checkbox",
"id": "show_thumbnails",
"label": "Show thumbnails",
"info": "Disable this to hide all thumbnails.",
"default": true
},
{
"type": "checkbox",
"id": "enable_slider_for_thumbnails_desktop",
"label": "Enable thumbnails slider",
"info": "Disable this to use the original Debut's thumbnails without a slider.",
"default": true
},
{
"type": "select",
"id": "thumbnails_highlighted_position",
"label": "Highlighted thumbnail aligns to the:",
"options": [
{
"value": "left",
"label": "Left"
},
{
"value": "center",
"label": "Center"
},
{
"value": "right",
"label": "Right"
}
],
"default": "left"
},
{
"type": "select",
"id": "thumbnails_vertical_alignment",
"label": "Vertical alignment",
"options": [
{
"value": "top",
"label": "Top"
},
{
"value": "center",
"label": "Center"
}
],
"default": "top"
},
{
"type": "select",
"id": "thumbnails",
"label": "Thumbnail's quantity on desktop",
"options": [
{
"value": "3",
"label": "3"
},
{
"value": "4",
"label": "4"
},
{
"value": "5",
"label": "5"
},
{
"value": "6",
"label": "6"
}
],
"default": "4"
},
{
"type": "select",
"id": "thumbnails_mobile",
"label": "Thumbnail's quantity on mobile",
"options": [
{
"value": "3",
"label": "3"
},
{
"value": "4",
"label": "4"
},
{
"value": "5",
"label": "5"
},
{
"value": "6",
"label": "6"
}
],
"default": "4"
},
{
"type": "header",
"content": "Other Slider Settings"
},
{
"type": "select",
"id": "arrow_style",
"label": "Arrow style",
"options": [
{
"value": "full_height",
"label": "Full height"
},
{
"value": "circle",
"label": "Circle, vertically centered"
}
],
"default": "circle"
},
{
"type": "range",
"id": "arrow_opacity",
"min": 0,
"max": 99,
"step": 1,
"unit": "%",
"label": "Arrow background transparency",
"info": "The lower the more transparent.",
"default": 75
},
{
"type": "range",
"id": "arrow_hover_opacity",
"min": 0,
"max": 99,
"step": 1,
"unit": "%",
"label": "Arrow background transparency on hover",
"info": "The lower the more transparent.",
"default": 99
},
{
"type": "checkbox",
"id": "compability_16_below",
"label": "Compability for themes below 16.0.0",
"info": "If your theme is below 16.0.0 and you experience issues, please activate this. Warning: do not activate on themes above 16.0.0. It will break the slider.",
"default": true
},
{
"type": "header",
"content": "Original Settings"
},
{
"type": "checkbox",
"id": "show_quantity_selector",
"label": {
"cs": "Zobrazit výběr množství",
"da": "Vis antalsvælger",
"de": "Mengenauswahl anzeigen",
"en": "Show quantity selector",
"es": "Mostrar selector de cantidad",
"fi": "Näytä määrän valitsin",
"fr": "Afficher le sélecteur de quantité",
"it": "Mostra selettore quantità",
"ja": "数量セレクターを表示する",
"ko": "수량 선택기 표시",
"nb": "Vis mengdevelger",
"nl": "Hoeveelheidskiezer weergeven",
"pl": "Pokaż selektor ilości",
"pt-BR": "Exibir seletor de quantidade",
"pt-PT": "Mostrar um seletor de quantidade",
"sv": "Visa kvantitetsväljare",
"th": "แสดงตัวเลือกจำนวน",
"tr": "Adet seçiciyi göster",
"vi": "Hiển thị hộp chọn số lượng",
"zh-CN": "显示数量选择器",
"zh-TW": "顯示數量選擇器"
},
"default": false
},
{
"type": "checkbox",
"id": "show_vendor",
"label": {
"cs": "Zobrazit dodavatele",
"da": "Vis leverandør",
"de": "Lieferanten anzeigen",
"en": "Show vendor",
"es": "Mostrar proveedor",
"fi": "Näytä myyjä",
"fr": "Afficher les vendeurs",
"it": "Mostra fornitore",
"ja": "販売元を表示する",
"ko": "공급업체 표시",
"nb": "Vis leverandør",
"nl": "Leverancier weergeven",
"pl": "Pokaż dostawcę",
"pt-BR": "Exibir fabricante",
"pt-PT": "Mostrar fornecedor",
"sv": "Visa säljare",
"th": "แสดงผู้ขาย",
"tr": "Satıcıyı göster",
"vi": "Hiển thị nhà cung cấp",
"zh-CN": "显示厂商",
"zh-TW": "顯示廠商"
},
"default": false
},
{
"type": "checkbox",
"id": "enable_payment_button",
"label": {
"cs": "Zobrazit dynamické tlačítko pokladny",
"da": "Vis dynamisk betalingsknap",
"de": "Dynamischen Checkout Button anzeigen",
"en": "Show dynamic checkout button",
"es": "Mostrar botón de pago dinámico",
"fi": "Näytä dynaaminen kassapainike",
"fr": "Afficher le bouton de paiement dynamique",
"it": "Mostra pulsante di check-out dinamico",
"ja": "動的チェックアウトボタンを表示する",
"ko": "동적 결제 버튼 표시",
"nb": "Vis dynamisk knapp for å gå til kassen",
"nl": "Dynamische checkoutknop weergeven",
"pl": "Pokaż dynamiczny przycisk realizacji zakupu",
"pt-BR": "Exibir botão de checkout dinâmico",
"pt-PT": "Mostrar o botão dinâmico de finalização da compra",
"sv": "Visa dynamiska utcheckningsknappar",
"th": "แสดงปุ่มชำระเงินแบบไดนามิก",
"tr": "Dinamik ödeme düğmesini göster",
"vi": "Hiển thị nút thanh toán nhanh",
"zh-CN": "显示动态结账按钮",
"zh-TW": "顯示動態結帳按鈕"
},
"info": {
"cs": "Každý zákazník uvidí platební metodu, kterou ze všech metod dostupných v obchodě (například PayPal nebo Apple Pay) nejvíce preferuje. [Další informace](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"da": "Den enkelte kunde vil se sin foretrukne betalingsmetode blandt dem, der er tilgængelige i din butik, f.eks. PayPal eller Apple Pay. [Få mere at vide](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"de": "Jeder Kunde sieht seine bevorzugte Zahlungsmethode aus den in deinem Shop verfügbaren Zahlungsmethoden wie PayPal oder Apple Pay. [Mehr Informationen](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"en": "Each customer will see their preferred payment method from those available on your store, such as PayPal or Apple Pay. [Learn more](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"es": "Cada cliente verá su forma de pago preferida entre las disponibles en tu tienda, como PayPal o Apple Pay. [Más información](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"fi": "Kukin asiakas näkee ensisijaisen valintansa kauppasi tarjoamista maksutavoista, esim. PayPal tai Apple Pay. [Lisätietoja](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"fr": "Chaque client verra son moyen de paiement préféré parmi ceux qui sont proposés sur votre boutique, tels que PayPal ou Apple Pay. [En savoir plus](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"it": "Ogni cliente vedrà il suo metodo di pagamento preferito tra quelli disponibili nel tuo negozio, come PayPal o Apple Pay. [Maggiori informazioni](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"ja": "PayPalやApple Payなど、ストアで利用可能な希望の決済方法がお客様に表示されます。[詳しくはこちら](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"ko": "각 고객은 PayPal 또는 Apple Pay와 같이 스토어에서 사용 가능한 지불 방법을 확인할 수 있습니다. [자세히 알아보기](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"nb": "Hver enkelt kunde vil se sin foretrukne betalingsmåte blant de som er tilgjengelig i butikken din, som PayPal eller Apple Pay. [Finn ut mer](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"nl": "Elke klant ziet zijn of haar beschikbare voorkeursmethode om af te rekenen, zoals PayPal of Apple Pay. [Meer informatie](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"pl": "Każdy klient zobaczy swoją preferowaną metodę płatności wśród metod dostępnych w Twoim sklepie, np. PayPal lub Apple Pay. [Dowiedz się więcej](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"pt-BR": "Cada cliente verá a forma de pagamento preferencial dele dentre as disponíveis na loja, como PayPal ou Apple Pay. [Saiba mais](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"pt-PT": "Cada cliente irá ver o seu método de pagamento preferido entre os disponíveis na loja, como o PayPal ou Apple Pay. [Saiba mais](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"sv": "Varje kund kommer att se den föredragna betalningsmetoden från de som finns tillgängliga i din butik, till exempel PayPal eller Apple Pay. [Läs mer](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"th": "ลูกค้าแต่ละรายจะเห็นวิธีการชำระเงินที่ต้องการจากวิธีที่ใช้ได้ในร้านค้าของคุณ เช่น PayPal หรือ Apple Pay [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"tr": "Her müşteri, mağazanız sunulanlar arasından tercih ettikleri ödeme yöntemini görür (ör. PayPal veya Apple Pay). [Daha fazla bilgi edinin](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"vi": "Mỗi khách hàng sẽ thấy phương thức thanh toán ưu tiên trong những phương thức thanh toán được hỗ trợ tại cửa hàng như PayPal hoặc Apple Pay. [Tìm hiểu thêm](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"zh-CN": "每位客户都可在您商店提供的付款方式中看到他们的首选付款方式,例如 PayPal 或 Apple Pay。[了解详细信息](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
"zh-TW": "每位顧客都可以在您商店內開放使用的付款方式中看見他們偏好使用的方式,如 PayPal、Apple Pay 等。[深入瞭解](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
},
"default": true
},
{
"type": "checkbox",
"id": "show_share_buttons",
"label": {
"cs": "Zobrazit tlačítka pro sdílení na sociálních sítích",
"da": "Vis knapper til deling på sociale medier",
"de": "Buttons für Social Media anzeigen",
"en": "Show social sharing buttons",
"es": "Mostrar botones para compartir en redes sociales",
"fi": "Näytä sosiaalisen median jakamispainikkeet",
"fr": "Affichez les boutons de partage sur les médias sociaux",
"it": "Mostra i pulsanti per la condivisione sui social",
"ja": "ソーシャルメディアでの共有ボタンを表示する",
"ko": "소셜 공유 버튼 표시",
"nb": "Vis knapper for deling på sosiale medier",
"nl": "Knoppen voor sociaal delen weergeven",
"pl": "Pokaż przyciski udostępniania w mediach społecznościowych",
"pt-BR": "Exibir botões de compartilhamento em redes sociais",
"pt-PT": "Mostrar botões de partilha nas redes sociais",
"sv": "Visa knappar för delning i sociala medier",
"th": "แสดงปุ่มสำหรับแชร์ลงโซเชียล",
"tr": "Sosyal medya paylaşım düğmelerini göster",
"vi": "Hiển thị nút chia sẻ qua mạng xã hội",
"zh-CN": "显示社交分享按钮",
"zh-TW": "顯示社群分享按鈕"
},
"default": true
},
{
"type": "header",
"content": {
"cs": "Multimédia",
"da": "Medie",
"de": "Medien",
"en": "Media",
"es": "Elementos multimedia",
"fi": "Media",
"fr": "Support multimédia",
"it": "Media",
"ja": "メディア",
"ko": "미디어",
"nb": "Medier",
"nl": "Media",
"pl": "Multimedia",
"pt-BR": "Mídia",
"pt-PT": "Multimédia",
"sv": "Media",
"th": "สื่อ",
"tr": "Medya",
"vi": "Nội dung đa phương tiện",
"zh-CN": "媒体",
"zh-TW": "媒體"
},
"info": {
"cs": "Další informace o [typech multimédií](https://help.shopify.com/manual/products/product-media)",
"da": "Få mere at vide om [media types](https://help.shopify.com/manual/products/product-media)",
"de": "Mehr Informationen über [Medientypen ](https://help.shopify.com/manual/products/product-media)",
"en": "Learn more about [media types](https://help.shopify.com/manual/products/product-media)",
"es": "Más información sobre [tipos de archivos multimedia](https://help.shopify.com/manual/products/product-media)",
"fi": "Lue lisää [mediatyypeistä](https://help.shopify.com/manual/products/product-media)",
"fr": "En savoir plus sur les [types de supports multimédia](https://help.shopify.com/manual/products/product-media)",
"it": "Scopri di più sulle [tipologie di file multimediali](https://help.shopify.com/manual/products/product-media)",
"ja": "[メディアのタイプ](https://help.shopify.com/manual/products/product-media) について詳しくはこちら",
"ko": "[미디어 유형](https://help.shopify.com/manual/products/product-media)에 대해 자세히 알아보기",
"nb": "Lær mer om [medietyper](https://help.shopify.com/manual/products/product-media)",
"nl": "Meer informatie over [mediatypen](https://help.shopify.com/manual/products/product-media)",
"pl": "Dowiedz się więcej o [typach multimediów](https://help.shopify.com/manual/products/product-media)",
"pt-BR": "Saiba mais sobre [tipos de mídia](https://help.shopify.com/manual/products/product-media)",
"pt-PT": "Saiba mais sobre [media types](https://help.shopify.com/manual/products/product-media)",
"sv": "Läs mer om [mediatyper](https://help.shopify.com/manual/products/product-media)",
"th": "ดูข้อมูลเพิ่มเติมเกี่ยวกับ [ประเภทของสื่อ](https://help.shopify.com/manual/products/product-media)",
"tr": "[Medya türleri](https://help.shopify.com/manual/products/product-media) hakkında daha fazla bilgi edinin",
"vi": "Tìm hiểu thêm về [loại phương tiện](https://help.shopify.com/manual/products/product-media)",
"zh-CN": "详细了解[媒体类型](https://help.shopify.com/manual/products/product-media)",
"zh-TW": "深入瞭解 [媒體類型](https://help.shopify.com/manual/products/product-media)"
}
},
{
"type": "select",
"id": "media_size",
"label": {
"cs": "Velikost",
"da": "Størrelse",
"de": "Größe",
"en": "Size",
"es": "Tamaño",
"fi": "Koko",
"fr": "Taille",
"it": "Dimensione",
"ja": "サイズ",
"ko": "사이즈",
"nb": "Størrelse",
"nl": "Grootte",
"pl": "Rozmiar",
"pt-BR": "Tamanho",
"pt-PT": "Tamanho",
"sv": "Storlek",
"th": "ขนาด",
"tr": "Boyut",
"vi": "Cỡ",
"zh-CN": "尺寸",
"zh-TW": "尺寸"
},
"options": [
{
"value": "small",
"label": {
"cs": "Malá",
"da": "Lille",
"de": "Klein",
"en": "Small",
"es": "Pequeño",
"fi": "Pieni",
"fr": "Petit",
"it": "Piccolo",
"ja": "スモール",
"ko": "스몰",
"nb": "Liten",
"nl": "Klein",
"pl": "Mały",
"pt-BR": "Pequeno",
"pt-PT": "Pequeno",
"sv": "Liten",
"th": "เล็ก",
"tr": "Küçük",
"vi": "Nhỏ",
"zh-CN": "小",
"zh-TW": "小型"
}
},
{
"value": "medium",
"label": {
"cs": "Střední",
"da": "Medium",
"de": "Mittel",
"en": "Medium",
"es": "Mediano",
"fi": "Keskisuuri",
"fr": "Moyenne",
"it": "Medio",
"ja": "中",
"ko": "보통",
"nb": "Middels",
"nl": "Gemiddeld",
"pl": "Średni",
"pt-BR": "Médio",
"pt-PT": "Médio",
"sv": "Medium",
"th": "ปานกลาง",
"tr": "Orta",
"vi": "Trung bình",
"zh-CN": "中等",
"zh-TW": "中等"
}
},
{
"value": "large",
"label": {
"cs": "Velká",
"da": "Stor",
"de": "Groß",
"en": "Large",
"es": "Grande",
"fi": "Suuri",
"fr": "Grande",
"it": "Grande",
"ja": "大",
"ko": "라지",
"nb": "Stor",
"nl": "Groot",
"pl": "Duży",
"pt-BR": "Grande",
"pt-PT": "Grande",
"sv": "Stor",
"th": "ใหญ่",
"tr": "Büyük",
"vi": "Lớn",
"zh-CN": "大",
"zh-TW": "大型"
}
},
{
"value": "full",
"label": {
"cs": "Plná šířka",
"da": "Fuld bredde",
"de": "Volle Breite",
"en": "Full-width",
"es": "Ancho completo",
"fi": "Täysi leveys",
"fr": "Pleine largeur",
"it": "Intera larghezza",
"ja": "全幅",
"ko": "전체 폭",
"nb": "Full bredde",
"nl": "Volledige breedte",
"pl": "Pełna szerokość",
"pt-BR": "Largura completa",
"pt-PT": "Largura completa",
"sv": "Full bredd",
"th": "เต็มความกว้าง",
"tr": "Tam genişlikli",
"vi": "Độ rộng đầy đủ",
"zh-CN": "全宽",
"zh-TW": "完整寬度"
}
}
],
"default": "medium"
},
{
"type": "checkbox",
"id": "enable_image_zoom",
"label": {
"cs": "Povolit zvětšení obrázku",
"da": "Aktivér billedzoom",
"de": "Foto-Zoom zulassen",
"en": "Enable image zoom",
"es": "Habilitar zoom de imagen",
"fi": "Ota kuvan zoomaus käyttöön",
"fr": "Activer le zoom d'image",
"it": "Abilita lo zoom dell'immagine",
"ja": "画像ズームを有効にする",
"ko": "이미지 확대 사용",
"nb": "Aktiver bildezoom",
"nl": "Inzoomen op afbeelding inschakelen",
"pl": "Włącz powiększenie obrazu",
"pt-BR": "Habilitar o zoom da imagem",
"pt-PT": "Ativar o zoom da imagem",
"sv": "Aktivera bildzoom",
"th": "เปิดใช้การซูมภาพ",
"tr": "Görsel yakınlaştırmayı etkinleştir",
"vi": "Bật thu phóng hình ảnh",
"zh-CN": "启用图片缩放",
"zh-TW": "啟用圖片縮放"
},
"default": true
},
{
"type": "checkbox",
"id": "enable_video_looping",
"label": {
"cs": "Povolit smyčky videa",
"da": "Aktivér looping af videoer",
"de": "Videoschleife aktivieren",
"en": "Enable video looping",
"es": "Habilitar la reproducción de video en bucle",
"fi": "Ota käyttöön videosilmukka",
"fr": "Activer le bouclage de la vidéo",
"it": "Abilita la riproduzione in loop dei video",
"ja": "ビデオのループを有効にする",
"ko": "동영상 루프",
"nb": "Aktiver løkkeavspilling av video",
"nl": "Video-looping inschakelen",
"pl": "Włącz zapętlanie wideo",
"pt-BR": "Habilitar loop de vídeo",
"pt-PT": "Ativar ciclo de vídeo",
"sv": "Aktivera video-loopning",
"th": "เปิดใช้การวนซ้ำวิดีโอ",
"tr": "Video döngüsünü etkinleştir",
"vi": "Bật vòng lặp video",
"zh-CN": "启用视频循环",
"zh-TW": "啟用影片循環功能"
},
"default": false
}
]
}
{% endschema %}
thanks for it i have check but i can't see color swatch code do you have use any app?
Hi, thanks for checking! The color should be in the theme, as we haven't manually selected it. I can see the swatch is FF5000 if that helps.. We also have the Product Personalizer App that is responsible for the personalization menu.
Thanks
sorry for that its create app issue it reorder content dynamic we're doesn't control
By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024Thanks to everyone who participated in our AMA with 2H Media: Marketing Your Shopify St...
By Jacqui Sep 6, 2024