Product code issue

Created Diff never expires
<div class="product-template__container page-width"
<div class="product-template__container page-width"
id="ProductSection-{{ section.id }}"
id="ProductSection-{{ section.id }}"
data-section-id="{{ section.id }}"
data-section-id="{{ section.id }}"
data-section-type="product"
data-section-type="product"
data-enable-history-state="true"
data-enable-history-state="true"
data-ajax-enabled="{{ settings.enable_ajax }}"
data-ajax-enabled="{{ settings.enable_ajax }}"
>
>
{% comment %}
{% comment %}
Get first variant, or deep linked one
Get first variant, or deep linked one
{% endcomment %}
{% endcomment %}
{%- assign current_variant = product.selected_or_first_available_variant -%}
{%- assign current_variant = product.selected_or_first_available_variant -%}
{%- assign product_image_zoom_size = '1024x1024' -%}
{%- assign product_image_zoom_size = '1024x1024' -%}
{%- assign product_image_scale = '2' -%}
{%- assign product_image_scale = '2' -%}
{%- assign enable_image_zoom = section.settings.enable_image_zoom -%}
{%- assign enable_image_zoom = section.settings.enable_image_zoom -%}
{%- assign compare_at_price = current_variant.compare_at_price -%}
{%- assign compare_at_price = current_variant.compare_at_price -%}
{%- assign price = current_variant.price -%}
{%- assign price = current_variant.price -%}


{% case section.settings.media_size %}
{% case section.settings.media_size %}
{% when 'small' %}
{% when 'small' %}
{%- assign product_media_width = 'medium-up--one-third' -%}
{%- assign product_media_width = 'medium-up--one-third' -%}
{%- assign product_description_width = 'medium-up--two-thirds' -%}
{%- assign product_description_width = 'medium-up--two-thirds' -%}
{%- assign height = 345 -%}
{%- assign height = 345 -%}
{% when 'medium' %}
{% when 'medium' %}
{%- assign product_media_width = 'medium-up--one-half' -%}
{%- assign product_media_width = 'medium-up--one-half' -%}
{%- assign product_description_width = 'medium-up--one-half' -%}
{%- assign product_description_width = 'medium-up--one-half' -%}
{%- assign height = 530 -%}
{%- assign height = 530 -%}
{% when 'large' %}
{% when 'large' %}
{%- assign product_media_width = 'medium-up--two-thirds' -%}
{%- assign product_media_width = 'medium-up--two-thirds' -%}
{%- assign product_description_width = 'medium-up--one-third' -%}
{%- assign product_description_width = 'medium-up--one-third' -%}
{%- assign height = 720 -%}
{%- assign height = 720 -%}
{% when 'full' %}
{% when 'full' %}
{%- assign product_media_width = '' -%}
{%- assign product_media_width = '' -%}
{%- assign product_description_width = '' -%}
{%- assign product_description_width = '' -%}
{%- assign height = 1090 -%}
{%- assign height = 1090 -%}
{%- assign enable_image_zoom = false -%}
{%- assign enable_image_zoom = false -%}
{% endcase %}
{% endcase %}


<div class="grid product-single{% if section.settings.enable_payment_button %} product-single--{{ section.settings.media_size }}-media{% endif %}">
<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>
<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 -%}
{%- assign featured_media = product.selected_or_first_available_variant.featured_media | default: product.featured_media -%}


{%- for media in product.media -%}
{%- for media in product.media -%}
{% include 'media', media: media, featured_media: featured_media, height: height, enable_image_zoom: enable_image_zoom, image_zoom_size: product_image_zoom_size, image_scale: product_image_scale %}
{% include 'media', media: media, featured_media: featured_media, height: height, enable_image_zoom: enable_image_zoom, image_zoom_size: product_image_zoom_size, image_scale: product_image_scale %}
{%- endfor -%}
{%- endfor -%}


<noscript>
<noscript>
{% capture product_image_size %}{{ height }}x{% endcapture %}
{% 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;">
<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>
</noscript>


{% assign first_3d_model = product.media | where: "media_type", "model" | first %}
{% assign first_3d_model = product.media | where: "media_type", "model" | first %}


{%- if first_3d_model -%}
{%- if first_3d_model -%}
<button
<button
aria-label="{{ 'products.product.view_in_space_label' | t }}"
aria-label="{{ 'products.product.view_in_space_label' | t }}"
class="product-single__view-in-space"
class="product-single__view-in-space"
data-shopify-xr
data-shopify-xr
data-shopify-model3d-id="{{ first_3d_model.id }}"
data-shopify-model3d-id="{{ first_3d_model.id }}"
data-shopify-title="{{ product.title | escape }}"
data-shopify-title="{{ product.title | escape }}"
data-shopify-xr-hidden
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>
{% include 'icon-3d-badge-full-color' %}<span class='product-single__view-in-space-text'>{{ 'products.product.view_in_space' | t }}</span>
</button>
</button>
{%- endif -%}
{%- endif -%}




{% if product.media.size > 1 %}
{% if product.media.size > 1 %}
{% if product.media.size > 4 %}
{% if product.media.size > 4 %}
{%- assign enable_thumbnail_slides = true -%}
{%- assign enable_thumbnail_slides = true -%}
{% endif %}
{% endif %}


<div data-thumbnail-slider>
<div data-thumbnail-slider>
<div class="thumbnails-wrapper{% if enable_thumbnail_slides == true %} slider-active{% endif %}" data-slider>
<div class="thumbnails-wrapper{% if enable_thumbnail_slides == true %} slider-active{% endif %}" data-slider>
{% if enable_thumbnail_slides == true %}
{% if enable_thumbnail_slides == true %}
<button type="button" class="btn btn--link medium-up--hide thumbnails-slider__btn thumbnails-slider__prev thumbnails-slider__prev--{{ section.id }}" data-slider-button>
<button type="button" class="btn btn--link medium-up--hide thumbnails-slider__btn thumbnails-slider__prev thumbnails-slider__prev--{{ section.id }}" data-slider-button>
{% include 'icon-chevron-left' %}
{% include 'icon-chevron-left' %}
<span class="icon__fallback-text">{{ 'sections.slideshow.previous_slide' | t }}</span>
<span class="icon__fallback-text">{{ 'sections.slideshow.previous_slide' | t }}</span>
</button>
</button>
{% endif %}
{% endif %}


<ul class="product-single__thumbnails product-single__thumbnails-{{ section.id }}" data-slider-container>
<ul class="product-single__thumbnails product-single__thumbnails-{{ section.id }}" data-slider-container>
{% if enable_thumbnail_slides == true %}
{% if enable_thumbnail_slides == true %}
<div class="product-single__thumbnails-slider-track" data-slider-track>
<div class="product-single__thumbnails-slider-track" data-slider-track>
{% endif %}
{% endif %}


{% for media in product.media %}
{% for media in product.media %}
{% assign image = product.images | where: 'src', media.src | first %}
{% if image.variants.size == 0 %}
<li class="product-single__thumbnails-item product-single__thumbnails-item--{{ section.settings.media_size }} {% if enable_thumbnail_slides == true %} product-single__thumbnails-item-slide{% endif %} js"{% if enable_thumbnail_slides == true %} data-slider-slide-index="{{ forloop.index0 }}" data-slider-item{% endif %}>
<li class="product-single__thumbnails-item product-single__thumbnails-item--{{ section.settings.media_size }} {% if enable_thumbnail_slides == true %} product-single__thumbnails-item-slide{% endif %} js"{% if enable_thumbnail_slides == true %} data-slider-slide-index="{{ forloop.index0 }}" data-slider-item{% endif %}>
<a href="{{ media.preview_image | img_url: product_image_zoom_size, scale: product_image_scale }}"
<a 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 }}"
class="text-link product-single__thumbnail product-single__thumbnail--{{ section.id }}"
data-thumbnail-id="{{ section.id }}-{{ media.id }}"
data-thumbnail-id="{{ section.id }}-{{ media.id }}"
{% if enable_thumbnail_slides == true %} data-slider-item-link{% endif %}
{% 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 %}>
{% if enable_image_zoom %}data-zoom="{{ media.preview_image | img_url: product_image_zoom_size, scale: product_image_scale }}"{% endif %}>


{%- capture thumbnailAlt -%}
{%- capture thumbnailAlt -%}
{%- if media.media_type == 'video' or media.media_type == 'external_video' -%}
{%- if media.media_type == 'video' or media.media_type == 'external_video' -%}
{{ 'sections.featured_product.video_thumbnail_alt' | t: imageAlt: media.alt | escape }}
{{ 'sections.featured_product.video_thumbnail_alt' | t: imageAlt: media.alt | escape }}
{%- elsif media.media_type == 'model' -%}
{%- elsif media.media_type == 'model' -%}
{{ 'sections.featured_product.model_thumbnail_alt' | t: imageAlt: media.alt | escape }}
{{ 'sections.featured_product.model_thumbnail_alt' | t: imageAlt: media.alt | escape }}
{%- else -%}
{%- else -%}
{{ 'sections.featured_product.gallery_thumbnail_alt' | t: imageAlt: media.alt | escape }}
{{ 'sections.featured_product.gallery_thumbnail_alt' | t: imageAlt: media.alt | escape }}
{%- endif -%}
{%- endif -%}
{%- endcapture -%}
{%- endcapture -%}


<img class="product-single__thumbnail-image" src="{{ media.preview_image | img_url: '110x110', scale: 2 }}" alt="{{ thumbnailAlt }}">
<img class="product-single__thumbnail-image" src="{{ media.preview_image | img_url: '110x110', scale: 2 }}" alt="{{ thumbnailAlt }}">
{%- if media.media_type == 'video' or media.media_type =='external_video' -%}
{%- if media.media_type == 'video' or media.media_type =='external_video' -%}
<div class="product-single__thumbnail-badge">
<div class="product-single__thumbnail-badge">
{% include 'icon-video-badge-full-color' %}
{% include 'icon-video-badge-full-color' %}
</div>
</div>
{%- endif -%}
{%- endif -%}
{%- if media.media_type == 'model' -%}
{%- if media.media_type == 'model' -%}
<div class="product-single__thumbnail-badge">
<div class="product-single__thumbnail-badge">
{% include 'icon-3d-badge-full-color' %}
{% include 'icon-3d-badge-full-color' %}
</div>
</div>
{%- endif -%}
{%- endif -%}
</a>
</a>
</li>
</li>
{%- endif -%}
{% endfor %}
{% endfor %}


{% if enable_thumbnail_slides == true %}
{% if enable_thumbnail_slides == true %}
</div>
</div>
{% endif %}
{% endif %}
</ul>
</ul>
{% if enable_thumbnail_slides == true %}
{% if enable_thumbnail_slides == true %}
<button type="button" class="btn btn--link medium-up--hide thumbnails-slider__btn thumbnails-slider__next thumbnails-slider__next--{{ section.id }}" data-slider-button data-slider-button-next>
<button type="button" class="btn btn--link medium-up--hide thumbnails-slider__btn thumbnails-slider__next thumbnails-slider__next--{{ section.id }}" data-slider-button data-slider-button-next>
{% include 'icon-chevron-right' %}
{% include 'icon-chevron-right' %}
<span class="icon__fallback-text">{{ 'sections.slideshow.next_slide' | t }}</span>
<span class="icon__fallback-text">{{ 'sections.slideshow.next_slide' | t }}</span>
</button>
</button>
{% endif %}
{% endif %}
</div>
</div>
</div>
</div>
{% endif %}
{% endif %}
</div>
</div>


<div class="grid__item {{ product_description_width }}">
<div class="grid__item {{ product_description_width }}">
<div class="product-single__meta">
<div class="product-single__meta">


<h1 class="product-single__title">{{ product.title }}</h1>
<h1 class="product-single__title">{{ product.title }}</h1>
<script>window.performance.mark('debut:product:title_visible');</script>
<script>window.performance.mark('debut:product:title_visible');</script>


<div class="product__price">
<div class="product__price">
{% include 'product-price', variant: current_variant, show_vendor: section.settings.show_vendor %}
{% include 'product-price', variant: current_variant, show_vendor: section.settings.show_vendor %}
{% comment %} Added by Robert S at Shopify Theme Support February 18, 2021 {% endcomment %}
<div class="product-single__description rte">
{{ product.description }}
</div>
</div>
</div>


{%- if cart.taxes_included or shop.shipping_policy.body != blank -%}
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}
<div class="product__policies rte" data-product-policies>
<div class="product__policies rte" data-product-policies>
{%- if cart.taxes_included -%}
{%- if shop.taxes_included -%}
{{ 'products.product.include_taxes' | t }}
{{ 'products.product.include_taxes' | t }}
{%- endif -%}
{%- endif -%}
{%- if shop.shipping_policy.body != blank -%}
{%- if shop.shipping_policy.body != blank -%}
{{ 'products.product.shipping_policy_html' | t: link: shop.shipping_policy.url }}
{{ 'products.product.shipping_policy_html' | t: link: shop.shipping_policy.url }}
{%- endif -%}
{%- endif -%}
</div>
</div>
{%- endif -%}
{%- endif -%}


{% capture "form_classes" -%}
{% capture "form_classes" -%}
product-form product-form-{{ section.id }}
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 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 -%}
{%- if current_variant.available == false %} product-form--variant-sold-out {%- endif -%}
{%- endcapture %}
{%- endcapture %}


{% form 'product', product, class:form_classes, novalidate: 'novalidate', data-product-form: '' %}
{% form 'product', product, class:form_classes, novalidate: 'novalidate', data-product-form: '' %}
{{ form | payment_terms }}

{% unless product.has_only_default_variant %}
{% unless product.has_only_default_variant %}
<div class="product-form__controls-group">
<div class="product-form__controls-group">
{% for option in product.options_with_values %}
{% for option in product.options_with_values %}
<div class="selector-wrapper js product-form__item">
<div class="selector-wrapper js product-form__item">
<label for="SingleOptionSelector-{{ forloop.index0 }}">
<label for="SingleOptionSelector-{{ forloop.index0 }}">
{{ option.name }}
{{ option.name }}
</label>
</label>
<select class="single-option-selector single-option-selector-{{ section.id }} product-form__input"
<select class="single-option-selector single-option-selector-{{ section.id }} product-form__input"
id="SingleOptionSelector-{{ forloop.index0 }}"
id="SingleOptionSelector-{{ forloop.index0 }}"
data-index="option{{ forloop.index }}"
data-index="option{{ forloop.index }}"
>
>
{% for value in option.values %}
{% for value in option.values %}
<option value="{{ value | escape }}"{% if option.selected_value == value %} selected="selected"{% endif %}>{{ value }}</option>
<option value="{{ value | escape }}"{% if option.selected_value == value %} selected="selected"{% endif %}>{{ value }}</option>
{% endfor %}
{% endfor %}
</select>
</select>
</div>
</div>
{% endfor %}
{% endfor %}
</div>
</div>
{% endunless %}
{% endunless %}


<select name="id" id="ProductSelect-{{ section.id }}" class="product-form__variants no-js">
<select name="id" id="ProductSelect-{{ section.id }}" class="product-form__variants no-js">
{% for variant in product.variants %}
{% for variant in product.variants %}
<option value="{{ variant.id }}"
<option value="{{ variant.id }}"
{%- if variant == current_variant %} selected="selected" {%- endif -%}
{%- if variant == current_variant %} selected="selected" {%- endif -%}
>
>
{{ variant.title }} {%- if variant.available == false %} - {{ 'products.product.sold_out' | t }}{% endif %}
{{ variant.title }} {%- if variant.available == false %} - {{ 'products.product.sold_out' | t }}{% endif %}
</option>
</option>
{% endfor %}
{% endfor %}
</select>
</select>
<div id="infiniteoptions-container"></div>
{% if section.settings.show_quantity_selector %}
{% if section.settings.show_quantity_selector %}
<div class="product-form__controls-group">
<div class="product-form__controls-group">
<div class="product-form__item">
<div class="product-form__item">
<label for="Quantity-{{ section.id }}">{{ 'products.product.quantity' | t }}</label>
<label for="Quantity-{{ section.id }}">{{ 'products.product.quantity' | t }}</label>
<input type="number" id="Quantity-{{ section.id }}"
<input type="number" id="Quantity-{{ section.id }}"
name="quantity" value="1" min="1" pattern="[0-9]*"
name="quantity" value="1" min="1" pattern="[0-9]*"
class="product-form__input product-form__input--quantity" data-quantity-input
class="product-form__input product-form__input--quantity" data-quantity-input
>
>
</div>
</div>
</div>
</div>
{% endif %}
{% 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 %}"
<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
data-error-message-wrapper
role="alert"
role="alert"
>
>
<span class="visually-hidden">{{ 'general.accessibility.error' | t }} </span>
<span class="visually-hidden">{{ 'general.accessibility.error' | t }} </span>
{% include 'icon-error' %}
{% include 'icon-error' %}
<span class="product-form__error-message" data-error-message>{{ 'products.product.quantity_minimum_message' | t }}</span>
<span class="product-form__error-message" data-error-message>{{ 'products.product.quantity_minimum_message' | t }}</span>
</div>
</div>


<div class="product-form__controls-group product-form__controls-group--submit">
<div class="product-form__controls-group product-form__controls-group--submit">
<div class="product-form__item product-form__item--submit
<div class="product-form__item product-form__item--submit
{%- if section.settings.enable_payment_button %} product-form__item--payment-button {%- endif -%}
{%- if section.settings.enable_payment_button %} product-form__item--payment-button {%- endif -%}
{%- if product.has_only_default_variant %} product-form__item--no-variants {%- endif -%}"
{%- if product.has_only_default_variant %} product-form__item--no-variants {%- endif -%}"
>
>
<button type="submit" name="add"
<button type="submit" name="add"
{% unless current_variant.available %} aria-disabled="true"{% endunless %}
{% 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 %}"
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 %}"
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 %}
{% if settings.enable_ajax %}aria-haspopup="dialog"{% endif %}
data-add-to-cart>
data-add-to-cart>
<span data-add-to-cart-text>
<span data-add-to-cart-text>
{% unless current_variant.available %}
{% unless current_variant.available %}
{{ 'products.product.sold_out' | t }}
{{ 'products.product.sold_out' | t }}
{% else %}
{% else %}
{{ 'products.product.add_to_cart' | t }}
{{ 'products.product.add_to_cart' | t }}
{% endunless %}
{% endunless %}
</span>
</span>
<span class="hide" data-loader>
<span class="hide" data-loader>
{% include 'icon-spinner' %}
{% include 'icon-spinner' %}
</span>
</span>
</button>
</button>
{% if section.settings.enable_payment_button %}
{% if section.settings.enable_payment_button %}
{{ form | payment_button }}
{{ form | payment_button }}
{% endif %}
{% endif %}
</div>
</div>
</div>
</div>
{% endform %}
{% endform %}
</div>
</div>


{%- comment -%}
{%- comment -%}
Live region for announcing updated price and availability to screen readers
Live region for announcing updated price and availability to screen readers
{%- endcomment -%}
{%- endcomment -%}
<p class="visually-hidden" data-product-status
<p class="visually-hidden" data-product-status
aria-live="polite"
aria-live="polite"
role="status"
role="status"
></p>
></p>


{%- comment -%}
{%- comment -%}
Live region for announcing that the product form has been submitted and the
Live region for announcing that the product form has been submitted and the
product is in the process being added to the cart
product is in the process being added to the cart
{%- endcomment -%}
{%- endcomment -%}
<p class="visually-hidden" data-loader-status
<p class="visually-hidden" data-loader-status
aria-live="assertive"
aria-live="assertive"
role="alert"
role="alert"
aria-hidden="true"
aria-hidden="true"
>{{ 'products.product.loader_label' | t }}</p>
>{{ 'products.product.loader_label' | t }}</p>
{% comment %}Edited by Mark T Shopify Theme Support April 13 2021{% endcomment %}
{% if section.settings.availability %}
<div
<div
class="product-single__store-availability-container"
class="product-single__store-availability-container"
data-store-availability-container
data-store-availability-container
data-product-title="{{ product.title | escape }}"
data-product-title="{{ product.title | escape }}"
data-has-only-default-variant="{{ product.has_only_default_variant }}"
data-has-only-default-variant="{{ product.has_only_default_variant }}"
data-base-url="{{ shop.url }}{{ routes.root_url }}"
data-base-url="{{ shop.url }}{{ routes.root_url }}"
>
>
</div>
</div>
{% endif %}


{% comment %}Removed by Robert S at Shopify Theme Support February 18, 2021 
<div class="product-single__description rte">
<div class="product-single__description rte">
{{ product.description }}
{{ product.description }}
</div>
</div>
{% endcomment %}


{% if section.settings.show_share_buttons %}
{% if section.settings.show_share_buttons %}
{% include 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product.featured_media %}
{% include 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product.featured_media %}
{% endif %}
{% endif %}
</div>
</div>
</div>
</div>
</div>
</div>


{% unless product == empty %}
{% unless product == empty %}
<script type="application/json" id="ProductJson-{{ section.id }}">
<script type="application/json" id="ProductJson-{{ section.id }}">
{{ product | json }}
{{ product | json }}
</script>
</script>
<script type="application/json" id="ModelJson-{{ section.id }}">
<script type="application/json" id="ModelJson-{{ section.id }}">
{{ product.media | where: 'media_type', 'model' | json }}
{{ product.media | where: 'media_type', 'model' | json }}
</script>
</script>
{% endunless %}
{% endunless %}






{% schema %}
{% schema %}
{
{
"name": {
"name": {
"cs": "Stránky produktů",
"cs": "Stránky produktů",
"da": "Produktsider",
"da": "Produktsider",
"de": "Produktseiten",
"de": "Produktseiten",
"en": "Product pages",
"en": "Product pages",
"es": "Páginas de productos",
"es": "Páginas de productos",
"fi": "Tuotesivut",
"fi": "Tuotesivut",
"fr": "Pages de produits",
"fr": "Pages de produits",
"it": "Pagine del prodotto",
"it": "Pagine di prodotto",
"ja": "商品ページ",
"ja": "商品ページ",
"ko": "제품 페이지",
"ko": "제품 페이지",
"nb": "Produktsider",
"nb": "Produktsider",
"nl": "Productpagina's",
"nl": "Productpagina's",
"pl": "Strony produktu",
"pl": "Strony produktu",
"pt-BR": "Páginas de produtos",
"pt-BR": "Páginas de produtos",
"pt-PT": "Páginas de produtos",
"pt-PT": "Páginas de produtos",
"sv": "Produktsidor",
"sv": "Produktsidor",
"th": "หน้าสินค้า",
"th": "หน้าสินค้า",
"tr": "Ürün sayfaları",
"tr": "Ürün sayfaları",
"vi": "Trang sản phẩm",
"vi": "Trang sản phẩm",
"zh-CN": "产品页面",
"zh-CN": "产品页面",
"zh-TW": "產品頁面"
"zh-TW": "產品頁面"
},
},
"settings": [
"settings": [
{
{
"type": "checkbox",
"id": "availability",
"default": true,
"label": "Enable store availability"
},
{
"type": "checkbox",
"type": "checkbox",
"id": "show_quantity_selector",
"id": "show_quantity_selector",
"label": {
"label": {
"cs": "Zobrazit výběr množství",
"cs": "Zobrazit výběr množství",
"da": "Vis antalsvælger",
"da": "Vis antalsvælger",
"de": "Mengenauswahl anzeigen",
"de": "Mengenauswahl anzeigen",
"en": "Show quantity selector",
"en": "Show quantity selector",
"es": "Mostrar selector de cantidad",
"es": "Mostrar selector de cantidad",
"fi": "Näytä määrän valitsin",
"fi": "Näytä määrän valitsin",
"fr": "Afficher le sélecteur de quantité",
"fr": "Afficher le sélecteur de quantité",
"it": "Mostra selettore quantità",
"it": "Mostra selettore quantità",
"ja": "数量セレクターを表示する",
"ja": "数量セレクターを表示する",
"ko": "수량 선택기 표시",
"ko": "수량 선택기 표시",
"nb": "Vis mengdevelger",
"nb": "Vis mengdevelger",
"nl": "Hoeveelheidskiezer weergeven",
"nl": "Hoeveelheidskiezer weergeven",
"pl": "Pokaż selektor ilości",
"pl": "Pokaż selektor ilości",
"pt-BR": "Exibir seletor de quantidade",
"pt-BR": "Exibir seletor de quantidade",
"pt-PT": "Mostrar um seletor de quantidade",
"pt-PT": "Mostrar um seletor de quantidade",
"sv": "Visa kvantitetsväljare",
"sv": "Visa kvantitetsväljare",
"th": "แสดงตัวเลือกจำนวน",
"th": "แสดงตัวเลือกจำนวน",
"tr": "Adet seçiciyi göster",
"tr": "Adet seçiciyi göster",
"vi": "Hiển thị hộp chọn số lượng",
"vi": "Hiển thị hộp chọn số lượng",
"zh-CN": "显示数量选择器",
"zh-CN": "显示数量选择器",
"zh-TW": "顯示數量選擇器"
"zh-TW": "顯示數量選擇器"
},
},
"default": false
"default": false
},
},
{
{
"type": "checkbox",
"type": "checkbox",
"id": "show_vendor",
"id": "show_vendor",
"label": {
"label": {
"cs": "Zobrazit dodavatele",
"cs": "Zobrazit dodavatele",
"da": "Vis leverandør",
"da": "Vis leverandør",
"de": "Lieferanten anzeigen",
"de": "Lieferanten anzeigen",
"en": "Show vendor",
"en": "Show vendor",
"es": "Mostrar proveedor",
"es": "Mostrar proveedor",
"fi": "Näytä myyjä",
"fi": "Näytä myyjä",
"fr": "Afficher les vendeurs",
"fr": "Afficher les vendeurs",
"it": "Mostra fornitore",
"it": "Mostra fornitore",
"ja": "販売元を表示する",
"ja": "販売元を表示する",
"ko": "공급업체 표시",
"ko": "공급업체 표시",
"nb": "Vis leverandør",
"nb": "Vis leverandør",
"nl": "Leverancier weergeven",
"nl": "Leverancier weergeven",
"pl": "Pokaż dostawcę",
"pl": "Pokaż dostawcę",
"pt-BR": "Exibir fabricante",
"pt-BR": "Exibir fornecedor",
"pt-PT": "Mostrar fornecedor",
"pt-PT": "Mostrar fornecedor",
"sv": "Visa säljare",
"sv": "Visa säljare",
"th": "แสดงผู้ขาย",
"th": "แสดงผู้ขาย",
"tr": "Satıcıyı göster",
"tr": "Satıcıyı göster",
"vi": "Hiển thị nhà cung cấp",
"vi": "Hiển thị nhà cung cấp",
"zh-CN": "显示厂商",
"zh-CN": "显示厂商",
"zh-TW": "顯示廠商"
"zh-TW": "顯示廠商"
},
},
"default": false
"default": false
},
},
{
{
"type": "checkbox",
"type": "checkbox",
"id": "enable_payment_button",
"id": "enable_payment_button",
"label": {
"label": {
"cs": "Zobrazit dynamické tlačítko pokladny",
"cs": "Zobrazit dynamické tlačítko pokladny",
"da": "Vis dynamisk betalingsknap",
"da": "Vis dynamisk betalingsknap",
"de": "Dynamischen Checkout Button anzeigen",
"de": "Dynamischen Checkout Button anzeigen",
"en": "Show dynamic checkout button",
"en": "Show dynamic checkout button",
"es": "Mostrar botón de pago dinámico",
"es": "Mostrar botón de pago dinámico",
"fi": "Näytä dynaaminen kassapainike",
"fi": "Näytä dynaaminen kassapainike",
"fr": "Afficher le bouton de paiement dynamique",
"fr": "Afficher le bouton de paiement dynamique",
"it": "Mostra pulsante di check-out dinamico",
"it": "Mostra pulsante di check-out dinamico",
"ja": "動的チェックアウトボタンを表示する",
"ja": "動的チェックアウトボタンを表示する",
"ko": "동적 결제 버튼 표시",
"ko": "동적 결제 버튼 표시",
"nb": "Vis dynamisk knapp for å gå til kassen",
"nb": "Vis dynamisk knapp for å gå til kassen",
"nl": "Dynamische checkoutknop weergeven",
"nl": "Dynamische betaalknop weergeven",
"pl": "Pokaż dynamiczny przycisk realizacji zakupu",
"pl": "Pokaż dynamiczny przycisk realizacji zakupu",
"pt-BR": "Exibir botão de checkout dinâmico",
"pt-BR": "Exibir botão de checkout dinâmico",
"pt-PT": "Mostrar o botão dinâmico de finalização da compra",
"pt-PT": "Mostrar o botão dinâmico de finalização da compra",
"sv": "Visa dynamiska utcheckningsknappar",
"sv": "Visa dynamiska utcheckningsknappar",
"th": "แสดงปุ่มชำระเงินแบบไดนามิก",
"th": "แสดงปุ่มชำระเงินแบบไดนามิก",
"tr": "Dinamik ödeme düğmesini göster",
"tr": "Dinamik ödeme düğmesini göster",
"vi": "Hiển thị nút thanh toán nhanh",
"vi": "Hiển thị nút thanh toán động",
"zh-CN": "显示动态结账按钮",
"zh-CN": "显示动态结账按钮",
"zh-TW": "顯示動態結帳按鈕"
"zh-TW": "顯示動態結帳按鈕"
},
},
"info": {
"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)",
"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)",
"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)",
"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)",
"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)",
"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)",
"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)",
"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)",
"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)",
"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)",
"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)",
"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)",
"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)",
"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-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)",
"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)",
"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)",
"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)",
"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)",
"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-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)"
"zh-TW": "每位顧客都可以在您商店內開放使用的付款方式中看見他們偏好使用的方式,如 PayPal、Apple Pay 等。[深入瞭解](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
},
},
"default": true
"default": true
},
},
{
{
"type": "checkbox",
"type": "checkbox",
"id": "show_share_buttons",
"id": "show_share_buttons",
"label": {
"label": {
"cs": "Zobrazit tlačítka pro sdílení na sociálních sítích",
"cs": "Zobrazit tlačítka pro sdílení na sociálních sítích",
"da": "Vis knapper til deling på sociale medier",
"da": "Vis knapper til deling på sociale medier",
"de": "Buttons für Social Media anzeigen",
"de": "Buttons für Social Media anzeigen",
"en": "Show social sharing buttons",
"en": "Show social sharing buttons",
"es": "Mostrar botones para compartir en redes sociales",
"es": "Mostrar botones para compartir en redes sociales",
"fi": "Näytä sosiaalisen median jakamispainikkeet",
"fi": "Näytä sosiaalisen median jakamispainikkeet",
"fr": "Affichez les boutons de partage sur les médias sociaux",
"fr": "Affichez les boutons de partage sur les médias sociaux",
"it": "Mostra i pulsanti per la condivisione sui social",
"it": "Mostra i pulsanti per la condivisione sui social",
"ja": "ソーシャルメディアでの共有ボタンを表示する",
"ja": "ソーシャルメディアでの共有ボタンを表示する",
"ko": "소셜 공유 버튼 표시",
"ko": "소셜 공유 버튼 표시",
"nb": "Vis knapper for deling på sosiale medier",
"nb": "Vis knapper for deling på sosiale medier",
"nl": "Knoppen voor sociaal delen weergeven",
"nl": "Knoppen voor sociaal delen weergeven",
"pl": "Pokaż przyciski udostępniania w mediach społecznościowych",
"pl": "Pokaż przyciski udostępniania w mediach społecznościowych",
"pt-BR": "Exibir botões de compartilhamento em redes sociais",
"pt-BR": "Exibir botões de compartilhamento em redes sociais",
"pt-PT": "Mostrar botões de partilha nas redes sociais",
"pt-PT": "Mostrar botões de partilha nas redes sociais",
"sv": "Visa knappar för delning i sociala medier",
"sv": "Visa knappar för delning i sociala medier",
"th": "แสดงปุ่มสำหรับแชร์ลงโซเชียล",
"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": "Contenuti multimediali",
"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": "媒體"
},