Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
664
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.59 KB | None | 0 0
  1. <div class="product-template__container page-width"
  2. id="ProductSection-{{ section.id }}"
  3. data-section-id="{{ section.id }}"
  4. data-section-type="product"
  5. data-enable-history-state="true"
  6. data-ajax-enabled="{{ settings.enable_ajax }}"
  7. >
  8. {% comment %}
  9. Get first variant, or deep linked one
  10. {% endcomment %}
  11. {%- assign current_variant = product.selected_or_first_available_variant -%}
  12. {%- assign product_image_zoom_size = '1024x1024' -%}
  13. {%- assign product_image_scale = '2' -%}
  14. {%- assign enable_zoom = section.settings.enable_zoom -%}
  15. {%- assign compare_at_price = current_variant.compare_at_price -%}
  16. {%- assign price = current_variant.price -%}
  17.  
  18. {% case section.settings.image_size %}
  19. {% when 'small' %}
  20. {%- assign product_image_width = 'medium-up--one-third' -%}
  21. {%- assign product_description_width = 'medium-up--two-thirds' -%}
  22. {%- assign product_thumbnail_width = 'medium-up--one-third' -%}
  23. {%- assign height = 345 -%}
  24. {% when 'medium' %}
  25. {%- assign product_image_width = 'medium-up--one-half' -%}
  26. {%- assign product_description_width = 'medium-up--one-half' -%}
  27. {%- assign product_thumbnail_width = 'medium-up--one-quarter' -%}
  28. {%- assign height = 530 -%}
  29. {% when 'large' %}
  30. {%- assign product_image_width = 'medium-up--two-thirds' -%}
  31. {%- assign product_description_width = 'medium-up--one-third' -%}
  32. {%- assign product_thumbnail_width = 'medium-up--one-fifth' -%}
  33. {%- assign height = 720 -%}
  34. {% when 'full' %}
  35. {%- assign product_image_width = '' -%}
  36. {%- assign product_description_width = '' -%}
  37. {%- assign product_thumbnail_width = 'medium-up--one-eighth' -%}
  38. {%- assign height = 1090 -%}
  39. {%- assign enable_zoom = false -%}
  40. {% endcase %}
  41.  
  42. <div class="grid product-single{% if section.settings.enable_payment_button %} product-single--{{ section.settings.image_size }}-image{% endif %}">
  43. <div class="grid__item product-single__photos {{ product_image_width }}{% if section.settings.image_size == 'full' %} product-single__photos--full{% endif %}">
  44. {%- assign featured_image = product.selected_or_first_available_variant.featured_image | default: product.featured_image -%}
  45. {% for image in product.images %}
  46. {% capture img_id %}FeaturedImage-{{ section.id }}-{{ image.id }}{% endcapture %}
  47. {% capture img_class %}product-featured-img{% endcapture %}
  48. {% capture zoom_img_id %}FeaturedImageZoom-{{ section.id }}-{{ image.id }}{% endcapture %}
  49. {% capture img_wrapper_id %}{{ zoom_img_id }}-wrapper{% endcapture %}
  50. {%- assign img_url = image | img_url: '1x1' | replace: '_1x1.', '_{width}x.' -%}
  51.  
  52. {% render 'image-style', image: image, height: height, wrapper_id: img_wrapper_id, img_id: img_id %}
  53.  
  54. <div id="{{ img_wrapper_id }}" class="product-single__photo-wrapper js">
  55. <div
  56. id="{{ zoom_img_id }}"
  57. style="padding-top:{{ 1 | divided_by: image.aspect_ratio | times: 100}}%;"
  58. class="product-single__photo{% if enable_zoom %} js-zoom-enabled{% endif %}{% if product.images.size > 1 %} product-single__photo--has-thumbnails{% endif %}{% unless featured_image == image %} hide{% endunless %}"
  59. data-image-id="{{ image.id }}"
  60. {% if enable_zoom %} data-zoom="{{ image | img_url: product_image_zoom_size, scale: product_image_scale }}"{% endif %}>
  61. <img id="{{ img_id }}"
  62. class="feature-row__image {{ img_class }} lazyload{% unless featured_image == image %} lazypreload{% endunless %}"
  63. src="{{ image | img_url: '300x300' }}"
  64. data-src="{{ img_url }}"
  65. data-widths="[180, 360, 540, 720, 900, 1080, 1296, 1512, 1728, 2048]"
  66. data-aspectratio="{{ image.aspect_ratio }}"
  67. data-sizes="auto"
  68. tabindex="-1"
  69. alt="{{ image.alt | escape }}">
  70. </div>
  71. </div>
  72. {% endfor %}
  73.  
  74. <noscript>
  75. {% capture product_image_size %}{{ height }}x{% endcapture %}
  76. <img src="{{ featured_image | img_url: product_image_size, scale: product_image_scale }}" alt="{{ featured_image.alt }}" id="FeaturedImage-{{ section.id }}" class="product-featured-img" style="max-width: {{ height }}px;">
  77. </noscript>
  78.  
  79. {% if product.images.size > 1 %}
  80. {% if product.images.size > 3 %}
  81. {%- assign enable_thumbnail_slides = true -%}
  82. {% endif %}
  83.  
  84. <div class="thumbnails-wrapper{% if enable_thumbnail_slides == true %} thumbnails-slider--active{% endif %}">
  85. {% if enable_thumbnail_slides == true %}
  86. <button type="button" class="btn btn--link medium-up--hide thumbnails-slider__btn thumbnails-slider__prev thumbnails-slider__prev--{{ section.id }}">
  87. {% render 'icon-chevron-left' %}
  88. <span class="icon__fallback-text">{{ 'sections.slideshow.previous_slide' | t }}</span>
  89. </button>
  90. {% endif %}
  91. <ul class="grid grid--uniform product-single__thumbnails product-single__thumbnails-{{ section.id }}">
  92. {% for image in product.images %}
  93. <li class="grid__item {{ product_thumbnail_width }} product-single__thumbnails-item js">
  94. <a href="{{ image.src | img_url: product_image_zoom_size, scale: product_image_scale }}"
  95. class="text-link product-single__thumbnail product-single__thumbnail--{{ section.id }}"
  96. data-thumbnail-id="{{ image.id }}"
  97. {% if enable_zoom %}data-zoom="{{ image.src | img_url: product_image_zoom_size, scale: product_image_scale }}"{% endif %}>
  98. <img class="product-single__thumbnail-image" src="{{ image.src | img_url: '110x110', scale: 2 }}" alt="{{ 'sections.featured_product.gallery_thumbnail_alt' | t: imageAlt: image.alt | escape }}">
  99. </a>
  100. </li>
  101. {% endfor %}
  102. </ul>
  103. {% if enable_thumbnail_slides == true %}
  104. <button type="button" class="btn btn--link medium-up--hide thumbnails-slider__btn thumbnails-slider__next thumbnails-slider__next--{{ section.id }}">
  105. {% render 'icon-chevron-right' %}
  106. <span class="icon__fallback-text">{{ 'sections.slideshow.next_slide' | t }}</span>
  107. </button>
  108. {% endif %}
  109. </div>
  110. {% endif %}
  111. </div>
  112.  
  113. <div class="grid__item {{ product_description_width }}">
  114. <div class="product-single__meta">
  115.  
  116. <h1 class="product-single__title">{{ product.title }}</h1>
  117.  
  118. <div class="product__price">
  119. {% render 'product-price', variant: current_variant, show_vendor: section.settings.show_vendor %}
  120. </div>
  121.  
  122. {%- if shop.taxes_included or shop.shipping_policy.body != blank -%}
  123. <div class="product__policies rte">
  124. {%- if shop.taxes_included -%}
  125. {{ 'products.product.include_taxes' | t }}
  126. {%- endif -%}
  127. {%- if shop.shipping_policy.body != blank -%}
  128. {{ 'products.product.shipping_policy_html' | t: link: shop.shipping_policy.url }}
  129. {%- endif -%}
  130. </div>
  131. {%- endif -%}
  132.  
  133. {% capture "form_classes" -%}
  134. product-form product-form-{{ section.id }}{% unless section.settings.show_variant_labels %} product-form--hide-variant-labels{% endunless %}{% if section.settings.enable_payment_button and product.has_only_default_variant%} product-form--payment-button-no-variants{% endif %}
  135. {%- endcapture %}
  136.  
  137. {% form 'product', product, class:form_classes, novalidate: 'novalidate', data-product-form: '' %}
  138. {% unless product.has_only_default_variant %}
  139. <div class="product-form__controls-group">
  140. {% for option in product.options_with_values %}
  141. <div class="selector-wrapper js product-form__item">
  142. <label {% if option.name == 'default' %}class="label--hidden" {% endif %}for="SingleOptionSelector-{{ forloop.index0 }}">
  143. {{ option.name }}
  144. </label>
  145. <select class="single-option-selector single-option-selector-{{ section.id }} product-form__input" id="SingleOptionSelector-{{ forloop.index0 }}" data-index="option{{ forloop.index }}">
  146. {% for value in option.values %}
  147. <option value="{{ value | escape }}"{% if option.selected_value == value %} selected="selected"{% endif %}>{{ value }}</option>
  148. {% endfor %}
  149. </select>
  150. </div>
  151. {% endfor %}
  152. </div>
  153. {% endunless %}
  154.  
  155. <select name="id" id="ProductSelect-{{ section.id }}" class="product-form__variants no-js">
  156. {% for variant in product.variants %}
  157. {% if variant.available %}
  158. <option {% if variant == product.selected_or_first_available_variant %} selected="selected" {% endif %} value="{{ variant.id }}">
  159. {{ variant.title }}
  160. </option>
  161. {% else %}
  162. <option disabled="disabled">{{ variant.title }} - {{ 'products.product.sold_out' | t }}</option>
  163. {% endif %}
  164. {% endfor %}
  165. </select>
  166.  
  167. {% if section.settings.show_quantity_selector %}
  168. <div class="product-form__controls-group">
  169. <div class="product-form__item">
  170. <label for="Quantity-{{ section.id }}">{{ 'products.product.quantity' | t }}</label>
  171. <input type="number" id="Quantity-{{ section.id }}"
  172. name="quantity" value="1" min="1" pattern="[0-9]*"
  173. class="product-form__input product-form__input--quantity" data-quantity-input
  174. >
  175. </div>
  176. </div>
  177. {% endif %}
  178.  
  179. <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">
  180. <span class="visually-hidden">{{ 'general.accessibility.error' | t }} </span>
  181. {% render 'icon-error' %}
  182. <span class="product-form__error-message" data-error-message>{{ 'products.product.quantity_minimum_message' | t }}</span>
  183. </div>
  184.  
  185. <div class="product-form__controls-group product-form__controls-group--submit">
  186. <div class="product-form__item product-form__item--submit
  187. {%- if section.settings.enable_payment_button %} product-form__item--payment-button {%- endif -%}
  188. {%- if product.has_only_default_variant %} product-form__item--no-variants {%- endif -%}"
  189. >
  190. <button type="submit" name="add"
  191. {% unless current_variant.available %} aria-disabled="true"{% endunless %}
  192. aria-label="{% unless current_variant.available %}{{ 'products.product.sold_out' | t }}{% else %}{{ 'products.product.add_to_cart' | t }}{% endunless %}"
  193. class="btn product-form__cart-submit{% if section.settings.enable_payment_button %} btn--secondary-accent{% endif %}"
  194. data-add-to-cart>
  195. <span data-add-to-cart-text>
  196. {% unless current_variant.available %}
  197. {{ 'products.product.sold_out' | t }}
  198. {% else %}
  199. {{ 'products.product.add_to_cart' | t }}
  200. {% endunless %}
  201. </span>
  202. <span class="hide" data-loader>
  203. {% render 'icon-spinner' %}
  204. </span>
  205. </button>
  206. {% if section.settings.enable_payment_button %}
  207. {{ form | payment_button }}
  208. {% endif %}
  209. </div>
  210. </div>
  211. {% endform %}
  212. </div>
  213.  
  214. {%- comment -%}
  215. Live region for announcing updated price and availability to screen readers
  216. {%- endcomment -%}
  217. <p class="visually-hidden" data-product-status
  218. aria-live="polite"
  219. role="status"
  220. ></p>
  221.  
  222. {%- comment -%}
  223. Live region for announcing that the product form has been submitted and the
  224. product is in the process being added to the cart
  225. {%- endcomment -%}
  226. <p class="visually-hidden" data-loader-status
  227. aria-live="assertive"
  228. role="alert"
  229. aria-hidden="true"
  230. >{{ 'products.product.loader_label' | t }}</p>
  231.  
  232. <div class="product-single__description rte">
  233. {{ product.description }}
  234. </div>
  235.  
  236. {% if section.settings.show_share_buttons %}
  237. {% render 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product %}
  238. {% endif %}
  239. </div>
  240. </div>
  241. </div>
  242.  
  243. {% unless product == empty %}
  244. <script type="application/json" id="ProductJson-{{ section.id }}">
  245. {{ product | json }}
  246. </script>
  247. {% endunless %}
  248.  
  249.  
  250.  
  251. {% schema %}
  252. {
  253. "name": {
  254. "da": "Produktsider",
  255. "de": "Produktseiten",
  256. "en": "Product pages",
  257. "es": "Páginas de productos",
  258. "fi": "Tuotesivut",
  259. "fr": "Pages de produits",
  260. "hi": "उत्पाद पेज",
  261. "it": "Pagine di prodotto",
  262. "ja": "商品ページ",
  263. "ko": "제품 페이지",
  264. "ms": "Halaman produk",
  265. "nb": "Produktsider",
  266. "nl": "Productpagina's",
  267. "pt-BR": "Páginas de produtos",
  268. "pt-PT": "Páginas de produtos",
  269. "sv": "Produktsidor",
  270. "th": "หน้าสินค้า",
  271. "zh-CN": "产品页面",
  272. "zh-TW": "產品頁面"
  273. },
  274. "settings": [
  275. {
  276. "type": "select",
  277. "id": "image_size",
  278. "label": {
  279. "da": "Billedets størrelse",
  280. "de": "Foto-Größe",
  281. "en": "Image size",
  282. "es": "Tamaño de la imagen",
  283. "fi": "Kuvan koko",
  284. "fr": "Taille des images",
  285. "hi": "इमेज का आकार",
  286. "it": "Dimensione immagine",
  287. "ja": "画像サイズ",
  288. "ko": "이미지 크기",
  289. "ms": "Saiz imej",
  290. "nb": "Bildestørrelse",
  291. "nl": "Afbeeldingsformaat",
  292. "pt-BR": "Tamanho da imagem",
  293. "pt-PT": "Tamanho da imagem",
  294. "sv": "Bildstorlek",
  295. "th": "ขนาดรูปภาพ",
  296. "zh-CN": "图片尺寸",
  297. "zh-TW": "圖片尺寸"
  298. },
  299. "options": [
  300. {
  301. "value": "small",
  302. "label": {
  303. "da": "Lille",
  304. "de": "Klein",
  305. "en": "Small",
  306. "es": "Pequeña",
  307. "fi": "Pieni",
  308. "fr": "Petite",
  309. "hi": "छोटा",
  310. "it": "Piccolo",
  311. "ja": "小",
  312. "ko": "스몰",
  313. "ms": "Kecil",
  314. "nb": "Liten",
  315. "nl": "Klein",
  316. "pt-BR": "Pequeno",
  317. "pt-PT": "Pequeno",
  318. "sv": "Liten",
  319. "th": "เล็ก",
  320. "zh-CN": "小",
  321. "zh-TW": "小型"
  322. }
  323. },
  324. {
  325. "value": "medium",
  326. "label": {
  327. "da": "Medium",
  328. "de": "Mittel",
  329. "en": "Medium",
  330. "es": "Mediana",
  331. "fi": "Keskisuuri",
  332. "fr": "Moyenne",
  333. "hi": "मध्यम",
  334. "it": "Medio",
  335. "ja": "中",
  336. "ko": "보통",
  337. "ms": "Sederhana",
  338. "nb": "Middels",
  339. "nl": "Gemiddeld",
  340. "pt-BR": "Médio",
  341. "pt-PT": "Médio",
  342. "sv": "Medium",
  343. "th": "ปานกลาง",
  344. "zh-CN": "中等",
  345. "zh-TW": "中等"
  346. }
  347. },
  348. {
  349. "value": "large",
  350. "label": {
  351. "da": "Stor",
  352. "de": "Groß",
  353. "en": "Large",
  354. "es": "Grande",
  355. "fi": "Suuri",
  356. "fr": "Grande",
  357. "hi": "बड़ा",
  358. "it": "Grande",
  359. "ja": "大",
  360. "ko": "라지",
  361. "ms": "Besar",
  362. "nb": "Stor",
  363. "nl": "Groot",
  364. "pt-BR": "Grande",
  365. "pt-PT": "Grande",
  366. "sv": "Stor",
  367. "th": "ใหญ่",
  368. "zh-CN": "大",
  369. "zh-TW": "大型"
  370. }
  371. },
  372. {
  373. "value": "full",
  374. "label": {
  375. "da": "Fuld bredde",
  376. "de": "Volle Breite",
  377. "en": "Full-width",
  378. "es": "Ancho completo",
  379. "fi": "Täysi leveys",
  380. "fr": "Pleine largeur",
  381. "hi": "पूर्ण चौड़ाई",
  382. "it": "Intera larghezza",
  383. "ja": "全幅",
  384. "ko": "전체 폭",
  385. "ms": "Lebar penuh",
  386. "nb": "Full bredde",
  387. "nl": "Volledige breedte",
  388. "pt-BR": "Largura completa",
  389. "pt-PT": "Largura completa",
  390. "sv": "Full bredd",
  391. "th": "เต็มความกว้าง",
  392. "zh-CN": "全宽",
  393. "zh-TW": "完整寬度"
  394. }
  395. }
  396. ],
  397. "default": "medium"
  398. },
  399. {
  400. "type": "checkbox",
  401. "id": "show_quantity_selector",
  402. "label": {
  403. "da": "Vis antalsvælger",
  404. "de": "Quantitäts-Auswahl anzeigen",
  405. "en": "Show quantity selector",
  406. "es": "Mostrar selector de cantidad",
  407. "fi": "Näytä määrän valitsin",
  408. "fr": "Afficher le sélecteur de quantité",
  409. "hi": "मात्रा चयनकर्ता दिखाएं",
  410. "it": "Mostra selettore quantità",
  411. "ja": "数量セレクターを表示する",
  412. "ko": "수량 선택기 표시",
  413. "ms": "Tunjukkan pemilih kuantiti",
  414. "nb": "Vis mengdevelger",
  415. "nl": "Hoeveelheidskiezer weergeven",
  416. "pt-BR": "Exibir seletor de quantidade",
  417. "pt-PT": "Mostrar um seletor de quantidade",
  418. "sv": "Visa kvantitetsväljare",
  419. "th": "แสดงตัวเลือกจำนวน",
  420. "zh-CN": "显示数量选择器",
  421. "zh-TW": "顯示數量選擇器"
  422. },
  423. "default": false
  424. },
  425. {
  426. "type": "checkbox",
  427. "id": "show_variant_labels",
  428. "label": {
  429. "da": "Vis variantlabels",
  430. "de": "Varianten-Etiketten anzeigen",
  431. "en": "Show variant labels",
  432. "es": "Mostrar etiquetas de variantes",
  433. "fi": "Näytä vaihtoehtoiset tarrat",
  434. "fr": "Afficher le nom des variantes",
  435. "hi": "वेरिएंट लेबल दिखाएं",
  436. "it": "Mostra etichette varianti",
  437. "ja": "バリエーションのラベルを表示する",
  438. "ko": "이형 상품 레이블 표시",
  439. "ms": "Tunjukkan label varian",
  440. "nb": "Vis variantetiketter",
  441. "nl": "Variantlabels weergeven",
  442. "pt-BR": "Exibir etiquetas de variantes",
  443. "pt-PT": "Mostrar etiquetas de variantes",
  444. "sv": "Visa variantetiketter",
  445. "th": "แสดงป้ายกำกับตัวเลือกสินค้า",
  446. "zh-CN": "显示多属性标签",
  447. "zh-TW": "顯示子類選項標籤"
  448. },
  449. "default": true
  450. },
  451. {
  452. "type": "checkbox",
  453. "id": "show_vendor",
  454. "label": {
  455. "da": "Vis leverandør",
  456. "de": "Lieferanten anzeigen",
  457. "en": "Show vendor",
  458. "es": "Mostrar proveedor",
  459. "fi": "Näytä myyjä",
  460. "fr": "Afficher les vendeurs",
  461. "hi": "विक्रेता दिखाएं",
  462. "it": "Mostra fornitore",
  463. "ja": "販売元を表示する",
  464. "ko": "공급업체 표시",
  465. "ms": "Tunjukkan vendor",
  466. "nb": "Vis leverandør",
  467. "nl": "Leverancier weergeven",
  468. "pt-BR": "Exibir fornecedor",
  469. "pt-PT": "Mostrar fornecedor",
  470. "sv": "Visa säljare",
  471. "th": "แสดงผู้ขาย",
  472. "zh-CN": "显示厂商",
  473. "zh-TW": "顯示廠商"
  474. },
  475. "default": false
  476. },
  477. {
  478. "type": "checkbox",
  479. "id": "enable_zoom",
  480. "label": {
  481. "da": "Aktivér billedzoom",
  482. "de": "Foto-Zoom zulassen",
  483. "en": "Enable image zoom",
  484. "es": "Habilitar zoom de imagen",
  485. "fi": "Ota kuvan zoomaus käyttöön",
  486. "fr": "Activer le zoom d'image",
  487. "hi": "इमेज ज़ूम सक्षम करें",
  488. "it": "Abilita lo zoom dell'immagine",
  489. "ja": "画像ズームを有効にする",
  490. "ko": "이미지 확대 사용",
  491. "ms": "Dayakan zum imej",
  492. "nb": "Aktiver bildezoom",
  493. "nl": "Inzoomen op afbeelding inschakelen",
  494. "pt-BR": "Habilitar o zoom da imagem",
  495. "pt-PT": "Ativar o zoom da imagem",
  496. "sv": "Aktivera bildzoom",
  497. "th": "เปิดใช้การซูมภาพ",
  498. "zh-CN": "启用图片缩放",
  499. "zh-TW": "啟用圖片縮放"
  500. },
  501. "default": true
  502. },
  503. {
  504. "type": "checkbox",
  505. "id": "enable_payment_button",
  506. "label": {
  507. "da": "Vis dynamisk betalingsknap",
  508. "de": "Dynamischen Checkout Button anzeigen",
  509. "en": "Show dynamic checkout button",
  510. "es": "Mostrar botón de pago dinámico",
  511. "fi": "Näytä dynaaminen kassapainike",
  512. "fr": "Afficher le bouton de passage à la caisse dynamique",
  513. "hi": "डायनेमिक चेकआउट बटन दिखाएं",
  514. "it": "Mostra pulsante di check-out dinamico",
  515. "ja": "ダイナミックチェックアウトボタンを表示する",
  516. "ko": "동적 결제 버튼 표시",
  517. "ms": "Tunjukkan butang daftar keluar dinamik",
  518. "nb": "Vis dynamisk knapp for å gå til kassen",
  519. "nl": "Dynamische checkout knop weergeven",
  520. "pt-BR": "Exibir botão dinâmico de finalização da compra",
  521. "pt-PT": "Mostrar o botão dinâmico de finalização da compra",
  522. "sv": "Visa dynamiska utcheckningsknappar",
  523. "th": "แสดงปุ่มชำระเงินแบบไดนามิก",
  524. "zh-CN": "显示动态结账按钮",
  525. "zh-TW": "顯示動態結帳按鈕"
  526. },
  527. "info": {
  528. "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)",
  529. "de": "Jeder Kunde sieht seine bevorzugte Zahlungsmethode aus den in Ihrem Shop verfügbaren Zahlungsmethoden wie PayPal oder Apple Pay. [Mehr Infos](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  530. "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)",
  531. "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)",
  532. "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)",
  533. "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)",
  534. "hi": "प्रत्येक ग्राहक आपके स्टोर पर उपलब्ध अपनी पसंदीदा भुगतान की विधि देखेंगे जैसे PayPal या Apple Pay. [अधिक जानें](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  535. "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)",
  536. "ja": "PayPalやApple Payなど、ストアで利用可能な希望の決済方法がお客様に表示されます。[もっと詳しく](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  537. "ko": "각 고객은 PayPal 또는 Apple Pay와 같이 스토어에서 사용 가능한 지불 방법을 확인할 수 있습니다. [자세히 알아보기](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  538. "ms": "Setiap pelanggan akan melihat kaedah pembayaran keutamaan mereka dari yang tersedia di kedai anda, seperti PayPal atau Apple Pay. [Ketahui lebih lanjut](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  539. "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)",
  540. "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)",
  541. "pt-BR": "Cada cliente verá sua forma de pagamento preferida 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)",
  542. "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)",
  543. "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)",
  544. "th": "ลูกค้าแต่ละรายจะเห็นวิธีการชำระเงินที่ต้องการจากวิธีที่ใช้ได้ในร้านค้าของคุณ เช่น PayPal หรือ Apple Pay [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  545. "zh-CN": "每位客户都可在您商店提供的付款方式中看到他们的首选付款方式,例如 PayPal 或 Apple Pay。[了解详细信息](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  546. "zh-TW": "每位顧客都可以在您商店內開放使用的付款方式中看見他們偏好使用的方式,如 PayPal、Apple Pay 等。[深入瞭解相關資訊](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
  547. },
  548. "default": true
  549. },
  550. {
  551. "type": "checkbox",
  552. "id": "show_share_buttons",
  553. "label": {
  554. "da": "Vis knapper til deling på sociale medier",
  555. "de": "Buttons für Social Media anzeigen",
  556. "en": "Show social sharing buttons",
  557. "es": "Mostrar botones para compartir en redes sociales",
  558. "fi": "Näytä sosiaalisen median jakamispainikkeet",
  559. "fr": "Affichez les boutons de partage sur les médias sociaux",
  560. "hi": "सोशल शेयरिंग बटन दिखाएं",
  561. "it": "Mostra i pulsanti per la condivisione sui social",
  562. "ja": "ソーシャル共有ボタンを表示する",
  563. "ko": "소셜 공유 버튼 표시",
  564. "ms": "Tunjukkan butang perkongsian sosial",
  565. "nb": "Vis knapper for deling på sosiale medier",
  566. "nl": "Knoppen voor sociaal delen weergeven",
  567. "pt-BR": "Exibir botões de compartilhamento em redes sociais",
  568. "pt-PT": "Mostrar botões de partilha nas redes sociais",
  569. "sv": "Visa knappar för delning i sociala medier",
  570. "th": "แสดงปุ่มสำหรับแชร์ลงโซเชียล",
  571. "zh-CN": "显示社交分享按钮",
  572. "zh-TW": "顯示社群分享按鈕"
  573. },
  574. "default": true
  575. }
  576. ]
  577. }
  578. {% endschema %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement