Collection Grid Full Width on Capital Theme

Hi,
I’ve been trying to find a way to make the collection grid on my product pages full width. Does anyone know a code and where to place that code to make the product pages full width on the Capital Theme?

Thanks!

Hi @Gimeau
Thank you for your question.
Please share your store URL, page URL and also password (if your store has one) so we can help you.

Hi,

Thanks for your reply.

URL is https://gimeau.com.
password: stuyeb

Besides the ‘full with’ question, we would like to add an ‘add to cart’
button on the collection page, below all products. Could you please help us
out with this as well?

Kind regards,
irthe

Hi @Gimeau
Just checked your page, in this case if you want to make the section fullwidth, you need to change some code in your theme.
Please share the product.liquid section code, then we can help you

{% assign current_variant = product.selected_or_first_available_variant %}

{% form 'product', product %} {% if product.title == "Starter Set" %} {% endif %} {% for block in section.blocks%} {% case block.type %} {% when '@app' %}
{% render block %}
{% when 'title' %} {% if template == 'index' %}

{{ product.title }}

{% else %}

{{ product.title }}

{% endif %} {% when 'vendor' %} {% render "product-brand-type", showType: block.settings.productType, product: product, block_attributes: block.shopify_attributes %} {% when 'price' %} {% render "product-price", current_variant: current_variant, product: product, block_attributes: block.shopify_attributes %} {% when 'tax_and_shipping' %} {% assign showTax = false %} {% if cart.taxes_included and block.settings.tax_included %} {% assign showTax = true %} {% endif %}

{% assign showShipping = false %}
{% if shop.shipping_policy.body != blank and block.settings.shipping_policy %}
{% assign showShipping = true %}
{% endif %}

{% if showTax or showShipping %}
<span class=“product-page__policies” {{ block.shopify_attributes }}>
{% if showTax %}
{{ ‘products.product.include_taxes’ | t }}
{% endif %}
{% if showShipping %}
{{ ‘products.product.shipping_policy_html’ | t: link: shop.shipping_policy.url }}
{% endif %}

{% endif %}
{% when ‘swatches’ %}

{% for prod in collections.all.products %}
{% if prod.id == 7054756970544 %}
{% assign swatch_prod = prod %}
{% endif %}
{% endfor %}
{% for tag in product.tags %}
{% if tag contains ‘no-swatch’ %}
{% assign show_filt = false %}
{% endif %}
{% endfor %}
{% if show_filt != false %}
{% assign swatches_names = swatch_prod.metafields.custom.swatches_names.value %}
{% assign swatches_bgs = swatch_prod.metafields.custom.swatches_colours.value %}
{% assign swatches_links = swatch_prod.metafields.custom.swatches_links.value %}
Color

{% assign count = 0 %} {% for link in swatches_links %} {% assign count = count | plus: 1 %}

{{ link.title }}

{% endfor %}
.swatches_block{ display: flex; flex-direction: row; justify-content: flex-start; align-items: flex-start; width: 100%; } .swatches_position{ display: flex; flex-direction: row; justify-content: flex-start; align-items: flex-start; flex-wrap: wrap; width: 100%; } .swatch_item{ display: flex; flex-direction: column; justify-content: flex-start; align-items: center; width: 40px; height: 40px; border-radius: 100%; margin: 0 15px 15px 0; background-size: cover; background-position: center center; background-repeat: no-repeat; position: relative; cursor: pointer; } .swatch_item p{ display: none; flex-direction: row; justify-content: center; align-items: center; text-align: center; position: absolute; top: -30px; background-color: #FFF; border-radius: 0px; font-size: 12px; line-height: 12px; opacity: 0; transition: all .25s ease-out; color: #000; width: 100px; padding: 8px; box-shadow: 0px 0px 4px rgba(0,0,0,0.2); } .swatch_item:hover p{ display: flex; opacity: 1; } {% assign count_2 = 0 %} {% for bg in swatches_bgs %} {% assign count_2 = count_2 | plus: 1 %} .swatch_{{ count_2 }}{ background-image: url({{bg | img_url: "100x"}}); } {% endfor %} {% endif %} {% when 'quantity' %} {% if product.available %}
{{ 'products.product.quantity' | t }}
{% render 'icon-minus' %} {% render 'icon-add' %}
{% endif %} {% when 'stock_indicator' %} {% if block.settings.productStockLevel != blank and product.available %} {% assign threshold = block.settings.productStockLevel | append: '.0' | times: 1 %} {% assign infinity = false %} {% assign hasStockCounter = false %} {% assign inventory = '' %} {% for variant in product.variants %} {% if variant.inventory_management == null or variant.inventory_management == "" or variant.inventory_management == "shopify" and variant.inventory_policy == "continue" %} {% assign infinity = true %} {% elsif variant.inventory_quantity < threshold %} {% assign hasStockCounter = true %} {% endif %} {% endfor %}

{% if hasStockCounter %}

{{ 'products.product.stock_level' | t }} {% assign inventory = '' %} {% for variant in product.variants %} {% if variant.inventory_management == null or variant.inventory_management == '' or variant.inventory_management == 'shopify' and variant.inventory_policy == 'continue' %} {% capture inventory %}{{ inventory }}|100%{% endcapture %} {% if variant == current_variant %} {% assign currentInventory = '100%' %} {% endif %} {% else %} {% assign variant_inventory = variant.inventory_quantity | divided_by: threshold | times: 100 %} {% if variant_inventory > 100 %} {% assign variant_inventory = 100 %} {% endif %} {% capture inventory %}{{ inventory }}|{{ variant_inventory | append: '%' }}{% endcapture %} {% if variant == current_variant %} {% assign currentInventory = variant_inventory | append: '%' %} {% endif %} {% endif %} {% endfor %}

{% capture inventory %}{{ inventory | remove_first: ‘|’ | split: ‘|’ | escape }}{% endcapture %}

{% for variant in product.variants %}
{% if variant.inventory_management == null or variant.inventory_management == ‘’ or variant.inventory_management == ‘shopify’ and variant.inventory_policy == ‘continue’ %}

{% else %}
{% if variant.inventory_quantity > threshold %}
{{ ‘products.product.has_stock’ | t }}
{% elsif variant.inventory_quantity > 0 %}
{{ ‘products.product.low_stock’ | t: stock: variant.inventory_quantity }}
{% elsif variant.inventory_quantity == 0 %}
{{ ‘products.product.sold_out’ | t }}
{% endif %}
{% endif %}
{% endfor %}

{% endif %} {% endif %} {% when 'buy_buttons' %}
{% render 'spinner' %} {% if product.available %} {{ 'products.product.add_to_cart' | t }} {% else %} {{ 'products.product.sold_out' | t }} {% endif %}

{% if block.settings.productsSmartPayment and product.available %}
{{ form | payment_button }}
{% endif %}

{% when 'pay_installments' %}
{{ form | payment_terms }}
{% when 'store_availability' %}
{% when 'description' %}
{{ product.description }}
{% when 'complementary-products' %}
{% render 'complementary-products-block' with block_settings: block.settings %}
{% when 'cross-sells' %} {% render 'cross-sells' with block_settings: block.settings, block_attributes: block.shopify_attributes %} {% when 'social' %} {% render "share", url: product.url, title: product.title, image: product.featured_media.preview_image, collection: collection.title, block_attributes: block.shopify_attributes %} {% when 'custom-liquid' %}
{{ block.settings.custom-liquid }}

{% when ‘product-rating’ %}

{% if block.settings.rating != blank %}

{% if block.settings.rating-label != blank %}

{{ block.settings.rating-label }}

{% assign rating_aria_label = block.settings.rating-label %} {% else %} {% assign rating_aria_label = "Rating" %} {% endif %}

{% if block.settings.rating-icon-full %}

{% liquid
assign rating_decimal = 0
assign decimal = block.settings.rating | modulo: 1
if decimal >= 0.3 and decimal <= 0.7
assign rating_decimal = 0.5
elsif decimal > 0.7
assign rating_decimal = 1
endif

assign full_icons = block.settings.rating | floor | plus: rating_decimal | floor
assign empty_icons = block.settings.rating-max | round | minus: full_icons
if rating_decimal == 0.5
assign empty_icons = empty_icons | minus: 1
endif

assign full_alt = block.settings.rating-icon-full.alt | default: “Full icon”
assign empty_alt = block.setting.rating-icon-empty.alt | default: “Empty icon”
%}

{% for i in (1..full_icons) %}
{% render 'image', image_object: block.settings.rating-icon-full, image_widths: '50' %}
{% endfor %}

{% if block.settings.rating-icon-empty %}

{% if rating_decimal == 0.5 %}

{% render 'image', image_object: block.settings.rating-icon-full, image_widths: '50' %}
{% render 'image', image_object: block.settings.rating-icon-empty, image_widths: '50' %}
{% endif %}

{% for i in (1..empty_icons) %}

{% render 'image', image_object: block.settings.rating-icon-empty, image_widths: '50' %}
{% endfor %}

{% endif %}

{% else %}

{{ block.settings.rating }} / {{ block.settings.rating-max }}

{% endif %} {% endif %}

{% when ‘image-offer’ %}

{% if block.settings.image != blank %}

{% assign image_widths = ‘335, 460, 680, 920, 1020, 1100’ %}
{% assign image_noscript_width = ‘1100x’ %}
{% if block.settings.link == blank %}
{% assign image_link = false %}
{% else %}
{% assign image_link = block.settings.link %}
{% endif %}

{%- render 'image', image_object: block.settings.image, image_widths: image_widths, image_noscript_width: image_noscript_width, image_class: 'object-stretch', image_link: image_link, image_link_class: 'image-offer--is-link' -%} {% else %} {{ 'lifestyle-1' | placeholder_svg_tag: 'icon--placeholder' }} {% endif %}
.image-offer--image:hover .image-offer--is-link img { border-color: {{ block.settings.hover_border_color }}; }

{% when ‘text-with-icon’ %}

{% render ‘text-with-icon’, icon: block.settings.icon, text: block.settings.text, link: block.settings.link, block_attributes: block.shopify_attributes %}

{% endcase %}
{% endfor %}
{% endform %}

{% schema %}
{
“name”: {
“en”: “Product information”,
“de”: “Produkt”,
“es”: “Producto”,
“fr”: “Produit”,
“pt-PT”: “Produto”
},
“class”: “product-section section-half-width”,
“blocks”: [
{
“type”: “@app
},
{
“type”: “title”,
“name”: “Name”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “This is used to set the order and placement of the product name within the product information”
}
]
},
{
“type”: “vendor”,
“name”: “Vendor”,
“limit”: 1,
“settings”: [
{
“type”: “checkbox”,
“id”: “productType”,
“label”: {
“en”: “Show product type”,
“de”: “Produkttyp anzeigen”,
“es”: “Mostrar tipo de producto”,
“fr”: “Afficher le type de produit”,
“pt-PT”: “Mostrar o tipo de produto”
}
}
]
},
{
“type”: “price”,
“name”: “Price”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “This is used to set the order and placement of the product price within the product information”
}
]
},
{
“type”: “tax_and_shipping”,
“name”: “Tax and shipping”,
“limit”: 1,
“settings”: [
{
“type”: “checkbox”,
“id”: “tax_included”,
“label”: {
“en”: “Show ‘tax included’ message”,
“de”: “Nachricht "Steuer enthalten" anzeigen”,
“es”: “Mostrar mensaje "impuesto incluido"”,
“fr”: “Afficher le message « taxe incluse »”,
“pt-PT”: “Mostrar mensagem de ‘impostos incluídos’”
},
“default”: true
},
{
“type”: “checkbox”,
“id”: “shipping_policy”,
“label”: {
“en”: “Show shipping policy link”,
“de”: “Link zur Versandrichtlinie anzeigen”,
“es”: “Mostrar enlace de política de envío”,
“fr”: “Afficher le lien de la politique d’expédition”,
“pt-PT”: “Mostrar hiperligação da política de envios”
},
“default”: true
}
]
},
{
“type”: “swatches”,
“name”: “Variant options”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “This is used to set the order and placement of variant options within the product information”
}
]
},
{
“type”: “quantity”,
“name”: “Quantity selector”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “This is used to set the order and placement of the quantity selector within the product information”
}
]
},
{
“type”: “stock_indicator”,
“name”: “Low stock indicator”,
“limit”: 1,
“settings”: [
{
“type”: “range”,
“id”: “productStockLevel”,
“label”: {
“en”: “Show variant low stock indicator within product description”,
“de”: “Abweichende Anzeige für niedrigen Lagerbestand in der Produktbeschreibung anzeigen”,
“es”: “Mostrar el indicador de existencias bajas de la variante en la descripción del producto”,
“fr”: “Afficher la variante de l’indicateur de rupture de stock dans la description du produit”,
“pt-PT”: “Mostrar indicador variável de stock reduzido na descrição do produto”
},
“info”: {
“en”: “Enter a number representing the stock level below which the indicator will begin to decrease.”,
“de”: “Geben Sie die Höhe des Lagerbestands an, unterhalb derer die Anzeige fällt.”,
“es”: “Introduzca un número que represente el nivel de disponibilidad por debajo del cual el indicador empezará a disminuir.”,
“fr”: “Saisissez un nombre représentant le niveau de stock en dessous duquel l’indicateur commencera à diminuer.”,
“pt-PT”: “Introduza um número a indicar o nível de stock a partir do qual o indicador começa a descer.”
},
“min”: 0,
“max”: 20,
“step”: 1,
“default”: 0
}
]
},
{
“type”: “buy_buttons”,
“name”: “Buy buttons”,
“limit”: 1,
“settings”: [
{
“type”: “checkbox”,
“id”: “productsSmartPayment”,
“label”: {
“en”: “Show dynamic checkout button”,
“de”: “Dynamischen Bezahlbutton anzeigen”,
“es”: “Mostar el botón de compra dinámica”,
“fr”: “Afficher le bouton de paiement dynamique”,
“pt-PT”: “Mostrar botão de checkout dinâmico”
},
“info”: {
“en”: “Lets customers check out directly using a familiar payment method. Learn More”,
“de”: “Erlaubt Kunden, direkt mit einer bekannten Zahlungsart zu bezahlen. Mehr erfahren”,
“es”: “Permite a los clientes realizar el pago directamente utilizando una forma de pago conocida. Saber más”,
“fr”: “Permet aux clients de payer directement en utilisant un moyen de paiement familier. En savoir plus”,
“pt-PT”: “Permite aos clientes verem diretamente através de um método de pagamento familiar. Saber Mais
},
“default”: true
}
]
},
{
“type”: “pay_installments”,
“name”: “Shop Pay Installments”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “This is used to set the order and placement of the Shop Pay Installments banner within the product information”
}
]
},
{
“type”: “store_availability”,
“name”: “Local pickup”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “This is used to set the order and placement of local pickup within the product information. You will need to set your pickup locations to enable. Learn more
}
]
},
{
“type”: “description”,
“name”: “Description”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “This is used to set the order and placement of the product description within the product information”
}
]
},
{
“name”: “Complementary products”,
“type”: “complementary-products”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “To select complementary products, add the Search & Discovery app. Learn more
},
{
“type”: “text”,
“id”: “title”,
“label”: “Heading”,
“default”: “Pairs well with…”
},
{
“type”: “range”,
“id”: “products_to_show”,
“min”: 1,
“max”: 10,
“step”: 1,
“label”: “Products to show”,
“default”: 5
},
{
“type”: “range”,
“id”: “products_per_page”,
“min”: 1,
“max”: 4,
“step”: 1,
“default”: 1,
“label”: {
“en”: “Number of products per page”,
“de”: “Anzahl der Produkte pro Seite”,
“es”: “Cantidad de productos por página”,
“fr”: “Nombre de produits par page”,
“pt-PT”: “Número de produtos por página”
}
},
{
“type”: “color”,
“id”: “complementary_block_bg”,
“label”: “Background color”,
“default”: “#F8F8F8
}
]
},
{
“name”: “Cross sells”,
“type”: “cross-sells”,
“limit”: 1,
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: “Label”,
“default”: “Don’t forget these…”
},
{
“type”: “product”,
“id”: “cross_sell_product_1”,
“label”: “Cross sell product 1”
},
{
“type”: “product”,
“id”: “cross_sell_product_2”,
“label”: “Cross sell product 2”
},
{
“type”: “product”,
“id”: “cross_sell_product_3”,
“label”: “Cross sell product 3”
},
{
“type”: “color”,
“id”: “cross_sell_bg”,
“label”: “Background color”,
“default”: “#FFFFFF
}
]
},
{
“type”: “social”,
“name”: “Social media”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “This is used to set the order and placement of social media icons within the product information”
}
]
},
{
“name”: “Custom Liquid”,
“type”: “custom-liquid”,
“settings”: [
{
“type”: “liquid”,
“id”: “custom-liquid”,
“label”: “Custom Liquid”,
“default”: “

Add app snippets or other Liquid code to create advanced customizations.


}
]
},
{
“name”: “Product rating”,
“type”: “product-rating”,
“settings”: [
{
“type”: “text”,
“id”: “rating-label”,
“label”: “Label”,
“default”: “Rating”
},
{
“type”: “text”,
“id”: “rating”,
“label”: “Rating”,
“info”: “To display a rating, add a product rating metafield
},
{
“type”: “image_picker”,
“id”: “rating-icon-full”,
“label”: “Full icon”
},
{
“type”: “image_picker”,
“id”: “rating-icon-empty”,
“label”: “Empty icon”,
“info”: “Optional”
},
{
“type”: “number”,
“id”: “rating-max”,
“label”: “Maximum”,
“default”: 5,
“info”: “Select a maximum equal to the rating metafield’s scale maximum
}
]
},
{
“name”: “Image with offers”,
“type”: “image-offer”,
“settings”: [
{
“type”: “image_picker”,
“id”: “image”,
“label”: “Image”
},
{
“type”: “url”,
“id”: “link”,
“label”: {
“en”: “Link”,
“de”: “Link”,
“es”: “Enlace”,
“fr”: “Lien”,
“pt-PT”: “Ligação”
},
“info”: {
“en”: “Optional”,
“de”: “Optional”,
“es”: “Opcional”,
“fr”: “Facultatif”,
“pt-PT”: “Opcional”
}
},
{
“type”: “color”,
“id”: “hover_border_color”,
“label”: {
“en”: “Link hover border color”,
“de”: “Link hover border color”,
“es”: “Link hover border color”,
“fr”: “Link hover border color”,
“pt-PT”: “Link hover border color”
}
}
]
},
{
“name”: “Text with icon”,
“type”: “text-with-icon”,
“settings”: [
{
“type”: “select”,
“id”: “icon”,
“label”: {
“en”: “Icon”,
“de”: “Symbol”,
“es”: “Icono”,
“fr”: “Icône”,
“pt-PT”: “Ícone”
},
“default”: “takeaway”,
“options”: [
{
“value”: “none”,
“label”: {
“en”: “None”,
“de”: “Keiner”,
“es”: “Ninguno”,
“fr”: “Aucun”,
“pt-PT”: “Nenhum”
}
},
{
“value”: “home-smile”,
“label”: {
“en”: “Home with smile”,
“de”: “Haus mit Lächeln”,
“es”: “Hogar con sonrisa”,
“fr”: “Accueil souriant”,
“pt-PT”: “Casa com sorriso”
}
},
{
“value”: “store”,
“label”: {
“en”: “Store”,
“de”: “Speichern”,
“es”: “Tienda”,
“fr”: “Magasin”,
“pt-PT”: “Loja”
}
},
{
“value”: “flag”,
“label”: {
“en”: “Flag”,
“de”: “Flagge”,
“es”: “Bandera”,
“fr”: “Drapeau”,
“pt-PT”: “Bandeira”
}
},
{
“value”: “service”,
“label”: {
“en”: “Customer service”,
“de”: “Kundendienst”,
“es”: “Servicio al cliente”,
“fr”: “Service clients”,
“pt-PT”: “Serviço ao cliente”
}
},
{
“value”: “chat”,
“label”: {
“en”: “Chat bubble”,
“de”: “Chat-Blase”,
“es”: “Burbuja de chat”,
“fr”: “Bulle de chat”,
“pt-PT”: “Bolha de conversa”
}
},
{
“value”: “chat-smile”,
“label”: {
“en”: “Chat bubble with smile”,
“de”: “Chat-Blase mit Lächeln”,
“es”: “Burbuja de chat con sonrisa”,
“fr”: “Bulle de chat avec sourire”,
“pt-PT”: “Bolha de conversa com sorriso”
}
},
{
“value”: “question-answer”,
“label”: {
“en”: “Question and answer”,
“de”: “Frage und Antwort”,
“es”: “Pregunta y respuesta”,
“fr”: “Question et réponse”,
“pt-PT”: “Pergunta e resposta”
}
},
{
“value”: “wallet”,
“label”: {
“en”: “Wallet”,
“de”: “Geldbörse”,
“es”: “Cartera”,
“fr”: “Portefeuille”,
“pt-PT”: “Carteira”
}
},
{
“value”: “price-tag”,
“label”: {
“en”: “Price tag”,
“de”: “Preisschild”,
“es”: “Etiqueta de precio”,
“fr”: “Étiquette de prix”,
“pt-PT”: “Etiqueta de preço”
}
},
{
“value”: “vip”,
“label”: {
“en”: “VIP”,
“de”: “VIP”,
“es”: “VIP”,
“fr”: “VIP”,
“pt-PT”: “VIP”
}
},
{
“value”: “crown”,
“label”: {
“en”: “Crown”,
“de”: “Krone”,
“es”: “Corona”,
“fr”: “Couronne”,
“pt-PT”: “Coroa”
}
},
{
“value”: “exchange”,
“label”: {
“en”: “Exchange”,
“de”: “Austausch”,
“es”: “Intercambio”,
“fr”: “Échange”,
“pt-PT”: “Trocar”
}
},
{
“value”: “gift”,
“label”: {
“en”: “Gift”,
“de”: “Geschenk”,
“es”: “Regalo”,
“fr”: “Cadeau”,
“pt-PT”: “Presente”
}
},
{
“value”: “24-hours”,
“label”: {
“en”: “24 Hours”,
“de”: “24 Stunden”,
“es”: “24 horas”,
“fr”: “24 heures”,
“pt-PT”: “24 Horas”
}
},
{
“value”: “heart”,
“label”: {
“en”: “Heart”,
“de”: “Herz”,
“es”: “Corazón”,
“fr”: “Cœur”,
“pt-PT”: “Coração”
}
},
{
“value”: “map-pin”,
“label”: {
“en”: “Map pin”,
“de”: “Karten-Nadel”,
“es”: “Pin de mapa”,
“fr”: “Épingle de carte”,
“pt-PT”: “Alfinete no mapa”
}
},
{
“value”: “car”,
“label”: {
“en”: “Car”,
“de”: “Auto”,
“es”: “Coche”,
“fr”: “Voiture”,
“pt-PT”: “Automóvel”
}
},
{
“value”: “takeaway”,
“label”: {
“en”: “Takeaway”,
“de”: “Imbissbude”,
“es”: “Para llevar”,
“fr”: “Emporter”,
“pt-PT”: “Comida para fora”
}
},
{
“value”: “restaurant”,
“label”: {
“en”: “Restaurant”,
“de”: “Restaurant”,
“es”: “Restaurante”,
“fr”: “Restaurant”,
“pt-PT”: “Restaurante”
}
},
{
“value”: “cup”,
“label”: {
“en”: “Cup”,
“de”: “Körbchen”,
“es”: “Taza”,
“fr”: “Tasse”,
“pt-PT”: “Caneca”
}
},
{
“value”: “goblet”,
“label”: {
“en”: “Goblet”,
“de”: “Kelch”,
“es”: “Copa”,
“fr”: “Gobelet”,
“pt-PT”: “Cálice”
}
},
{
“value”: “star”,
“label”: {
“en”: “Star”,
“de”: “Stern”,
“es”: “Estrella”,
“fr”: “Étoile”,
“pt-PT”: “Estrela”
}
},
{
“value”: “sun”,
“label”: {
“en”: “Sun”,
“de”: “Sonne”,
“es”: “Sol”,
“fr”: “Soleil”,
“pt-PT”: “Sol”
}
},
{
“value”: “moon”,
“label”: {
“en”: “Moon”,
“de”: “Mond”,
“es”: “Luna”,
“fr”: “Lune”,
“pt-PT”: “Lua”
}
},
{
“value”: “cake”,
“label”: {
“en”: “Cake”,
“de”: “Kuchen”,
“es”: “Pastel”,
“fr”: “Gâteau”,
“pt-PT”: “Bolo”
}
},
{
“value”: “handbag”,
“label”: {
“en”: “Handbag”,
“de”: “Handtasche”,
“es”: “Bolso”,
“fr”: “Sac à main”,
“pt-PT”: “Mala de mão”
}
},
{
“value”: “umbrella”,
“label”: {
“en”: “Umbrella”,
“de”: “Regenschirm”,
“es”: “Paraguas”,
“fr”: “Parapluie”,
“pt-PT”: “Guarda-chuva”
}
},
{
“value”: “recycle”,
“label”: {
“en”: “Recycle”,
“de”: “Recyceln”,
“es”: “Reciclar”,
“fr”: “Recycler”,
“pt-PT”: “Reciclar”
}
}
]
},
{
“type”: “text”,
“id”: “text”,
“label”: {
“en”: “Text”,
“de”: “Text”,
“es”: “Texto”,
“fr”: “Texte”,
“pt-PT”: “Texto”
},
“default”: {
“en”: “Free shipping”,
“de”: “Kostenloser versand”,
“es”: “Envío gratis”,
“fr”: “Livraison gratuite”,
“pt-PT”: “Envio Grátis”
}
},
{
“type”: “url”,
“id”: “link”,
“label”: {
“en”: “Link”,
“de”: “Link”,
“es”: “Enlace”,
“fr”: “Lien”,
“pt-PT”: “Ligação”
},
“info”: {
“en”: “Optional”,
“de”: “Optional”,
“es”: “Opcional”,
“fr”: “Facultatif”,
“pt-PT”: “Opcional”
}
}
]
}
]
}
{% endschema %}