Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {%- assign product = all_products[section.settings.featured_product] -%}
- {%- assign current_variant = product.selected_or_first_available_variant -%}
- {%- assign featured_image = current_variant.featured_image | default: product.featured_image -%}
- {%- if product == empty -%}
- {%- assign section_onboarding = true -%}
- {%- assign vendor = 'homepage.onboarding.product_vendor' | t -%}
- {%- assign title = 'homepage.onboarding.product_title' | t -%}
- {%- assign compare_at_price = 2999 -%}
- {%- assign price = 1999 -%}
- {%- else -%}
- {%- assign section_onboarding = false -%}
- {%- assign vendor = product.vendor -%}
- {%- assign title = product.title -%}
- {%- assign compare_at_price = current_variant.compare_at_price -%}
- {%- assign price = current_variant.price -%}
- {%- endif -%}
- <div itemscope itemtype="http://schema.org/Product" id="ProductSection-{{ section.id }}" data-section-id="{{ section.id }}" data-section-type="product-template" data-image-zoom-type="" data-show-extra-tab="false" data-extra-tab-content="false" data-cart-enable-ajax="{{ settings.cart_enable_ajax }}" data-enable-history-state="false">
- <meta itemprop="name" content="{{ title }}">
- <meta itemprop="url" content="{{ shop.url }}{{ product.url }}">
- <meta itemprop="image" content="{{ product.featured_image.src | img_url: 'grande' }}">
- <div class="grid product-single">
- <div class="grid__item medium-up--one-half">
- {% unless section_onboarding %}
- {% for image in product.images %}
- {% capture img_id %}ProductImage-{{ image.id }}{% endcapture %}
- {% capture wrapper_id %}ProductImageWrapper-{{ image.id }}{% endcapture %}
- {%- assign img_url = image | img_url: '1x1' | replace: '_1x1.', '_{width}x.' -%}
- {% include 'image-style' with image: image, width: 720, height: 600, small_style: true, wrapper_id: wrapper_id, img_id: img_id %}
- <div id="{{ wrapper_id }}" class="product-single__featured-image-wrapper supports-js{% unless featured_image == image %} hidden{% endunless %}" data-image-id="{{ image.id }}">
- <div class="product-single__photos" data-image-id="{{ image.id }}" style="padding-top:{{ 1 | divided_by: image.aspect_ratio | times: 100}}%;">
- <img id="{{ img_id }}"
- class="product-single__photo lazyload{% unless featured_image == image %} lazypreload{% endunless %}"
- src="{{ image | img_url: '200x200' }}"
- data-src="{{ img_url }}"
- data-widths="[180, 360, 470, 600, 750, 940, 1080, 1296, 1512, 1728, 2048]"
- data-aspectratio="{{ image.aspect_ratio }}"
- data-sizes="auto"
- alt="{{ image.alt | escape }}">
- </div>
- {% if compare_at_price > price %}
- <span class="badge badge--sale"><span>{{ 'products.product.on_sale' | t }}</span></span>
- {% endif %}
- </div>
- {% endfor %}
- <noscript>
- <img src="{{ featured_image | img_url: 'grande' }}" alt="{{ featured_image.alt | escape }}">
- </noscript>
- {% else %}
- {{ 'product-1' | placeholder_svg_tag: 'placeholder-svg' }}
- {% endunless %}
- </div>
- <div class="grid__item medium-up--one-half{% if product.images.size == 0 and section_onboarding == false %} medium-up--push-one-half{% endif %}">
- <div class="product-single__meta small--text-center">
- <h1 class="product-single__title" itemprop="name">{{ title }}</h1>
- {% if section.settings.vendor_show %}
- <p class="product-single__vendor" itemprop="brand">{{ vendor }}</p>
- {% endif %}
- <p class="product-single__prices">
- {% if compare_at_price > price %}
- <span id="ComparePriceA11y" class="visually-hidden">{{ 'products.product.sale_price' | t }}</span>
- {% else %}
- <span class="visually-hidden">{{ 'products.product.regular_price' | t }}</span>
- {% endif %}
- <span id="ProductPrice" class="product-single__price" itemprop="price" content="{{ price | divided_by: 100.00 }}">
- {{ price | money }}
- </span>
- {% if compare_at_price > price %}
- <span id="PriceA11y" class="visually-hidden">{{ 'products.product.regular_price' | t }}</span>
- <s class="product-single__price--compare" id="ComparePrice">
- {{ compare_at_price | money }}
- </s>
- {% endif %}
- {% include 'product-unit-price', variant: current_variant, available: true %}
- </p>
- {%- if cart.taxes_included or shop.shipping_policy.body != blank -%}
- <div class="product-single__policies rte">
- {%- 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 -%}
- <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
- <meta itemprop="priceCurrency" content="{{ cart.currency.iso_code }}">
- <link itemprop="availability" href="http://schema.org/{% if current_variant.available %}InStock{% else %}OutOfStock{% endif %}">
- {% unless product == empty %}
- {%- assign productClasses = 'product-form' -%}
- {%- if product.has_only_default_variant -%}
- {%- assign productClasses = productClasses | append: ' product-form--default-variant-only' -%}
- {%- endif -%}
- {% form 'product', product, class: productClasses %}
- {{ form | payment_terms }}
- <select name="id" id="ProductSelect-{{ section.id }}" class="product-single__variants">
- {% for variant in product.variants %}
- {% if variant.available %}
- <option {% if variant == product.selected_or_first_available_variant %} selected="selected" {% endif %} data-sku="{{ variant.sku }}" value="{{ variant.id }}">{{ variant.title }} - {{ variant.price | money_with_currency }}</option>
- {% else %}
- <option disabled="disabled">
- {{ variant.title }} - {{ 'products.product.sold_out' | t }}
- </option>
- {% endif %}
- {% endfor %}
- </select>
- {% if section.settings.product_quantity_enable %}
- <div class="product-single__quantity">
- <label for="Quantity">{{ 'products.product.quantity' | t }}</label>
- <input type="number" id="Quantity" name="quantity" value="1" min="1">
- </div>
- {% endif %}
- <div class="product-single__cart-submit-wrapper{% if section.settings.enable_payment_button %} product-single__shopify-payment-btn{% endif %}{% if section.settings.add_to_cart_width == 'full_width' %} product-form--full{% endif %}">
- <button type="submit" name="add" id="AddToCart" class="btn product-single__cart-submit{% if section.settings.add_to_cart_width == 'full_width' %} btn--full{% endif %}{% if section.settings.enable_payment_button %} shopify-payment-btn btn--secondary{% endif %}"
- {% unless current_variant.available %} disabled="disabled"{% endunless %} data-cart-url="{{ routes.cart_url }}">
- <span id="AddToCartText">
- {% if current_variant.available %}
- {{ 'products.product.add_to_cart' | t }}
- {% else %}
- {{ 'products.product.sold_out' | t }}
- {% endif %}
- </span>
- </button>
- {% if section.settings.enable_payment_button %}
- {{ form | payment_button }}
- {% endif %}
- </div>
- {% endform %}
- {% else %}
- <div class="product-single__cart-submit-wrapper product-single__cart-submit-wrapper--onboarding">
- <button type="submit" name="add" id="AddToCart" class="btn product-single__cart-submit" disabled="disabled">
- <span id="AddToCartText">
- {{ 'products.product.sold_out' | t }}
- </span>
- </button>
- </div>
- {% endunless %}
- </div>
- <a class="product-single__full-details text-link"{% unless section_onboarding %} href="{{ product.url }}?variant={{ current_variant.id }}"{% endunless %}>
- {{ 'products.product.full_details' | t }} →
- </a>
- {% if section.settings.social_sharing_products %}
- {% include 'social-sharing', share_title: title, share_permalink: product.url, share_image: product %}
- {% endif %}
- </div>
- </div>
- </div>
- </div>
- {% unless product == empty %}
- <script type="application/json" id="ProductJson-{{ section.id }}">
- {{ product | json }}
- </script>
- {% endunless %}
- <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.
- window.productStrings = {
- addToCart: {{ 'products.product.add_to_cart' | t | json }},
- soldOut: {{ 'products.product.sold_out' | t | json }},
- unavailable: {{ 'products.product.unavailable' | t | json }}
- }
- </script>
- {% schema %}
- {
- "name": {
- "cs": "Propagovaný produkt",
- "da": "Fremhævet produkt",
- "de": "Vorgestelltes Produkt",
- "en": "Featured product",
- "es": "Producto destacado",
- "fi": "Esittelyssä oleva tuote",
- "fr": "Produit en vedette",
- "it": "Prodotto in primo piano",
- "ja": "おすすめ商品",
- "ko": "특별 상품",
- "nb": "Utvalgt produkt",
- "nl": "Uitgelicht product",
- "pl": "Polecany produkt",
- "pt-BR": "Produto em destaque",
- "pt-PT": "Produto em destaque",
- "sv": "Utvald produkt",
- "th": "สินค้าที่แนะนำ",
- "tr": "Öne çıkan ürün",
- "vi": "Sản phẩm nổi bật",
- "zh-CN": "特色产品",
- "zh-TW": "精選產品"
- },
- "settings": [
- {
- "type": "product",
- "id": "featured_product",
- "label": {
- "cs": "Produkt",
- "da": "Produkt",
- "de": "Produkte",
- "en": "Product",
- "es": "Producto",
- "fi": "Tuote",
- "fr": "Produit",
- "it": "Prodotto",
- "ja": "商品",
- "ko": "제품",
- "nb": "Produkt",
- "nl": "Product",
- "pl": "Produkt",
- "pt-BR": "Produto",
- "pt-PT": "Produto",
- "sv": "Produkt",
- "th": "สินค้า",
- "tr": "Ürün",
- "vi": "Sản phẩm",
- "zh-CN": "产品",
- "zh-TW": "產品"
- }
- },
- {
- "type": "checkbox",
- "id": "product_quantity_enable",
- "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": "Exiba um 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": "顯示數量選擇器"
- }
- },
- {
- "type": "checkbox",
- "id": "vendor_show",
- "label": {
- "cs": "Zobrazit dodavatele",
- "da": "Vis leverandør",
- "de": "Anbieter anzeigen",
- "en": "Show vendor",
- "es": "Mostrar proveedor",
- "fi": "Näytä myyjä",
- "fr": "Afficher le distributeur",
- "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": "顯示廠商"
- }
- },
- {
- "type": "checkbox",
- "id": "social_sharing_products",
- "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": "Afficher 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,
- "info": {
- "cs": "Upravit účty na sociálních sítích v obecném nastavení",
- "da": "Rediger SoMe-konti i Generelle indstillinger",
- "de": "Bearbeite Social-Media-Konten in den allgemeinen Einstellungen",
- "en": "Edit social accounts in General settings",
- "es": "Editar cuentas de las redes sociales en la configuración General",
- "fi": "Muokkaa sosiaalisen median tilejä kohdassa Yleiset asetukset",
- "fr": "Modifier les comptes sociaux dans les paramètres généraux",
- "it": "Modifica gli account social nelle Impostazioni generali",
- "ja": "一般設定でSNSアカウントを編集する",
- "ko": "일반 설정에서 소셜 계정 수정",
- "nb": "Rediger sosiale kontoer i Generelle innstillinger",
- "nl": "Socialmedia-accounts in Algemene instellingen bewerken",
- "pl": "Edytuj konta społecznościowe w ustawieniach ogólnych",
- "pt-BR": "Edite as contas de redes sociais nas configurações gerais",
- "pt-PT": "Editar as contas de redes sociais nas definições gerais",
- "sv": "Redigera sociala konton i Allmänna inställningar",
- "th": "แก้ไขบัญชีผู้ใช้โซเชียลมีเดียในการตั้งค่าทั่วไป",
- "tr": "Genel ayarlardan sosyal medya hesaplarını düzenleyin",
- "vi": "Chỉnh sửa tài khoản mạng xã hội trong Cài đặt chung",
- "zh-CN": "在“通用”设置中编辑社交媒体账户",
- "zh-TW": "前往「一般」設定編輯社群帳戶"
- }
- },
- {
- "type": "header",
- "content": {
- "cs": "Tlačítko Přidat do košíku",
- "da": "Knappen Læg i indkøbskurven",
- "de": "Schaltfläche In den Warenkorb",
- "en": "Add to cart button",
- "es": "Añadir al carrito",
- "fi": "Lisää ostoskoriin -painike",
- "fr": "Bouton d'ajout au panier",
- "it": "Pulsante \"Aggiungi al carrello\"",
- "ja": "カートボタンに追加する",
- "ko": "카트 버튼에 추가",
- "nb": "Legg i handlekurv-knapp",
- "nl": "Knop aan winkelwagen toevoegen",
- "pl": "Przycisk Dodaj do koszyka",
- "pt-BR": "Botão Adicionar ao carrinho",
- "pt-PT": "Botão Adicionar ao carrinho",
- "sv": "Lägg i varukorgen-knappen",
- "th": "ปุ่มเพิ่มลงในตะกร้าสินค้า",
- "tr": "Sepete ekle düğmesi",
- "vi": "Thêm vào nút giỏ hàng",
- "zh-CN": "“添加到购物车”按钮",
- "zh-TW": "加入購物車按鈕"
- }
- },
- {
- "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 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ızda 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": "select",
- "id": "add_to_cart_width",
- "label": {
- "cs": "Velikost tlačítka",
- "da": "Knapstørrelse",
- "de": "Schaltflächengröße",
- "en": "Button size",
- "es": "Tamaño del botón",
- "fi": "Painikkeen koko",
- "fr": "Taille du bouton",
- "it": "Dimensione pulsante",
- "ja": "ボタンのサイズ",
- "ko": "버튼 사이즈",
- "nb": "Knappestørrelse",
- "nl": "Afmeting knop",
- "pl": "Rozmiar przycisku",
- "pt-BR": "Tamanho do botão",
- "pt-PT": "Tamanho do botão",
- "sv": "Knappstorlek",
- "th": "ขนาดปุ่ม",
- "tr": "Düğme boyutu",
- "vi": "Cỡ nút",
- "zh-CN": "按钮大小",
- "zh-TW": "按鈕尺寸"
- },
- "options": [
- {
- "value": "regular",
- "label": {
- "cs": "Standardní",
- "da": "Almindelig",
- "de": "Regulär",
- "en": "Regular",
- "es": "Normal",
- "fi": "Normaali",
- "fr": "Normal",
- "it": "Regolare",
- "ja": "通常",
- "ko": "일반",
- "nb": "Vanlig",
- "nl": "Standaard",
- "pl": "Zwykły",
- "pt-BR": "Regular",
- "pt-PT": "Normal",
- "sv": "Regelbunden",
- "th": "ปกติ",
- "tr": "Normal",
- "vi": "Thông thường",
- "zh-CN": "一般设置",
- "zh-TW": "標準"
- }
- },
- {
- "value": "full_width",
- "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 total",
- "sv": "Full bredd",
- "th": "เต็มความกว้าง",
- "tr": "Tam genişlik",
- "vi": "Độ rộng đầy đủ",
- "zh-CN": "全宽",
- "zh-TW": "全寬度"
- }
- }
- ]
- }
- ],
- "presets": [
- {
- "name": {
- "cs": "Propagovaný produkt",
- "da": "Fremhævet produkt",
- "de": "Vorgestelltes Produkt",
- "en": "Featured product",
- "es": "Producto destacado",
- "fi": "Esittelyssä oleva tuote",
- "fr": "Produit en vedette",
- "it": "Prodotto in primo piano",
- "ja": "おすすめ商品",
- "ko": "특별 상품",
- "nb": "Utvalgt produkt",
- "nl": "Uitgelicht product",
- "pl": "Polecany produkt",
- "pt-BR": "Produto em destaque",
- "pt-PT": "Produto em destaque",
- "sv": "Utvald produkt",
- "th": "สินค้าที่แนะนำ",
- "tr": "Öne çıkan ürün",
- "vi": "Sản phẩm nổi bật",
- "zh-CN": "特色产品",
- "zh-TW": "精選產品"
- },
- "category": {
- "cs": "Produkt",
- "da": "Produkt",
- "de": "Produkte",
- "en": "Product",
- "es": "Producto",
- "fi": "Tuote",
- "fr": "Produit",
- "it": "Prodotto",
- "ja": "商品",
- "ko": "제품",
- "nb": "Produkt",
- "nl": "Product",
- "pl": "Produkt",
- "pt-BR": "Produto",
- "pt-PT": "Produto",
- "sv": "Produkt",
- "th": "สินค้า",
- "tr": "Ürün",
- "vi": "Sản phẩm",
- "zh-CN": "产品",
- "zh-TW": "產品"
- }
- }
- ],
- "blocks": []
- }
- {% endschema %}
Advertisement
Add Comment
Please, Sign In to add comment