How can I locate the banner text code snippet in Symetry theme?

I want to change the text content of a banner and cannot find the code under “edit themes - symetry - edit code”.
Can someone help me please?
Fra


nk

@diver - product label, so it can be in product.liquid template

do you have anything like product.liquid?

Yes, I already searched in product.liquid and product-template.liquid.
Any possibility to seach in all codes of the shop and not in every section?

@diver - can you please copy that code here? any app or anything you added?

I have following apps:

magnalister

This is product-template.liquid:

{%- assign current_variant = product.selected_or_first_available_variant -%}
{%- assign zoom_size = ‘master’ -%}

{%- if template contains ‘lightbox’ -%}
{%- assign in_lightbox = true -%}
{%- else -%}
{%- assign in_lightbox = false -%}
{%- endif -%}

{% if in_lightbox == false %}
{% if section.settings.show_tags and product.tags.size > 0 %} {{ 'products.product.tags' | t }} + {% endif %}

{% if section.settings.show_type %}
{%- assign product_type_handle = product.type | handle -%}
{%- if collections[product_type_handle].handle == product_type_handle -%}
{%- assign type_url = collections[product_type_handle].url -%}
{%- else -%}
{%- assign type_url = product.type | url_for_type -%}
{%- endif -%}
{{ ‘products.product.see_more_of_this_type’ | t }} {{ product.type | link_to: type_url }}
{% endif %}

{% if section.settings.show_tags and product.tags.size > 0 %}

    {%- for tag in product.tags -%}
  • {{ tag }}
  • {%- endfor -%}
{% endif %} {%- endif -%}

{%- assign lightbox_size = ‘master’ -%}
{%- assign min_aspect_ratio = 0.6 -%}

{% assign myImages = product.images %}
{% assign myVideos = product.media | where: ‘media_type’, ‘video’ %}
{% assign myImages = myImages | push: product.featured_media %}

{%- assign initial_slide = 0 -%}
{%- for media in myImages -%} {%- endfor -%} {% if myVideos.size > 0 %} {%- for media in myVideos -%} {%- render 'media', media: media, min_aspect_ratio: min_aspect_ratio -%} {%- endfor -%} {% endif %}

{%- if in_lightbox == false -%}
{%- assign models = product.media | where: ‘media_type’, ‘model’ -%}
{% if models.size > 0 %}


{%- render ‘icon-3d-badge-full-color’ -%}
{{ ‘products.product.view_in_space’ | t }}

{% endif %}
{%- endif -%}

{% if myImages.size > 1 %}

{% endif %}

{%- if settings.swatch_enabled and settings.swatch_images -%}

{%- for product_option in product.options_with_values -%} {%- if product_option.name == settings.swatch_option_name -%} {%- for value in product_option.values -%} {%- assign swatch_value = value | handle -%} .option--{{ settings.swatch_option_name | handle }} select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--{{ swatch_value }}::before, .swatch-option__nugget.bg-{{ swatch_value }} { background-image: url({{ swatch_value | append: '.png' | file_img_url: '48x48', crop: 'center' }}); } {%- endfor -%} {%- endif -%} {%- endfor -%}

{%- endif -%}

{{ product.title }}

{% render ‘product-label-detail’, product: product, current_variant: current_variant %}

{{ current_variant.price | money }} {% if current_variant.compare_at_price > current_variant.price %} {{ current_variant.compare_at_price | money }} {% endif %}

{% render ‘unit-price’, variant: current_variant %}

{%- if section.settings.show_tax_and_shipping -%}
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}

{%- if shop.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 -%}
{%- endif -%} {%- endif -%}

{% if section.settings.show_vendor or section.settings.show_sku %}

{%- if section.settings.show_vendor -%} {%- comment -%} Do we have a collection that has the same name as our product vendor name? If we do, let's have the vendor link point to it. If not, we will point to the automatic vendor collection. {%- endcomment -%} {%- assign product_vendor_handle = product.vendor | handle -%} {%- if collections[product_vendor_handle].handle == product_vendor_handle -%} {%- assign vendor_url = collections[product_vendor_handle].url -%} {%- else -%} {%- assign vendor_url = product.vendor | url_for_vendor -%} {%- endif -%}
{{ 'products.product.vendor' | t }} {{ product.vendor | link_to: vendor_url }}
{%- endif -%}

{%- if section.settings.show_sku -%}

{{ 'products.product.sku' | t }} {{ product.selected_or_first_available_variant.sku }}
{%- endif -%} {% render 'product-delivery', product: product %}
{% endif %}

{% form ‘product’, product, class: ‘form’, data-ajax-add-to-cart: true, data-product-id: product.id, data-enable-history-state: ‘true’ %}

{% if product.variants.size > 1 %}
{% for option in product.options_with_values %}
{{ option.name }}

{% if settings.show_size_chart and option.name == settings.size_chart_variant %}

{{ 'products.product.size_chart' | t }}
{{ pages[settings.size_chart_page].content }}
{% endif %}

{% endfor %}

{% else %}

{% unless product.has_only_default_variant %}

{% for option in product.options %} {% assign opt_idx = 'option' | append: forloop.index %} {{ option }}: {{ product.variants.first[opt_idx] }}

{% if settings.show_size_chart and option == settings.size_chart_variant %}

{{ 'products.product.size_chart' | t }}
{{ pages[settings.size_chart_page].content }}
{% endif %} {% endfor %}
{% endunless %}

{% endif %}

{% if product.available %}
{% if section.settings.show_inventory_notice %}
{%- capture inventory_notice -%}
{%- if current_variant.inventory_management == ‘shopify’ and current_variant.inventory_quantity > 0 -%}
{%- if section.settings.inventory_notice_threshold == 0 or current_variant.inventory_quantity <= section.settings.inventory_notice_threshold -%}

{{- 'products.labels.only_x_left' | t: quantity: current_variant.inventory_quantity -}}
{%- else -%}
{%- endif -%} {%- else -%}
{%- endif -%} {%- endcapture -%} {% endif %}

{% unless section.settings.show_quantity_selector %}{{ inventory_notice }}{% endunless %}

{% if section.settings.show_quantity_selector %} {{ 'products.product.quantity' | t }} {{ inventory_notice }} {% endif %} {% include 'iwish_v2' with 'iwishproduct' %}
{% if section.settings.enable_payment_button and product.selling_plan_groups == empty %} {{ form | payment_button }} {% endif %}

{% if section.settings.show_backorder_text == true %}
{% render ‘backorder’, product: product, variant: current_variant %}
{% endif %}

{%- unless in_lightbox or section.settings.show_pickup_availability == false -%}
{% render ‘store-availability’, product: product, current_variant: current_variant %}
{%- endunless -%}

{% else %}

{{ 'products.product.product_unavailable' | t }}
{% endif %} {% endform %}

{%- if in_lightbox -%}

{%- endif -%}

{% if section.settings.description_location == ‘beside’ and in_lightbox == false %}

{{ product.description }}

{% comment %} Add code to show under the description on the line below this one, if beside the image {% endcomment %}

{% endif %}

{% if in_lightbox %}

{% else %} {% if section.settings.show_sharing_links %}
{% render 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product %}
{% endif %} {% endif %}

{% if section.settings.description_location == ‘below’ and in_lightbox == false %}

{{ product.description }}

{% comment %} Add code to show under the description on the line below this one, if full-width underneath the image {% endcomment %}

{% endif %}

{% if in_lightbox == false %}

{% if section.settings.show_tags and product.tags.size > 0 %}
{{ 'products.product.tags' | t }}
    {% for tag in product.tags %}
  • {{ tag }}
  • {% endfor %}
{% endif %} {% if section.settings.show_sharing_links %}
{% render 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product %}
{% endif %}
{% if collection.previous_product %} {% render 'svg-chevron-left' %} {% endif %}
{%- if section.settings.show_type and product.type != blank -%} {%- assign product_type_handle = product.type | handle -%} {%- if collections[product_type_handle].handle == product_type_handle -%} {%- assign type_url = collections[product_type_handle].url -%} {%- else -%} {%- assign type_url = product.type | url_for_type -%} {%- endif -%} {{ product.type | link_to: type_url }} {% endif %}
{% if collection.next_product %} {% render 'svg-chevron-right' %} {% endif %}
{{ product.metafields.spr.reviews }}
{% endif %}

{% schema %}
{
“name”: “Product pages”,
“class”: “section-product-template”,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_tax_and_shipping”,
“label”: “Show tax status and shipping policy link”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “show_vendor”,
“label”: “Show vendor”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_type”,
“label”: “Show type”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “show_sku”,
“label”: “Show SKU”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “show_quantity_selector”,
“label”: “Show quantity selector”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “enable_payment_button”,
“label”: “Show dynamic checkout button”,
“info”: “Each customer will see their preferred payment method from those available on your store, such as PayPal or Apple Pay. Learn more”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_pickup_availability”,
“label”: “Show pickup availability”,
“default”: true,
“info”: “Show customers where they can pick up the product. Learn more
},
{
“type”: “checkbox”,
“id”: “show_backorder_text”,
“label”: “Show backorder text”,
“default”: true,
“info”: “Only shows for products which use Shopify inventory tracking and are available to purchase when out of stock.”
},
{
“type”: “checkbox”,
“id”: “show_inventory_notice”,
“label”: “Show inventory notice”,
“default”: false
},
{
“type”: “range”,
“id”: “inventory_notice_threshold”,
“min”: 0,
“max”: 100,
“step”: 1,
“label”: “Inventory threshold”,
“info”: “Show inventory quantities below this threshold. Choose 0 to show full amount.”,
“default”: 10
},
{
“type”: “checkbox”,
“id”: “show_sharing_links”,
“label”: “Show social sharing icons”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_tags”,
“label”: “Show tags”,
“default”: false
},
{
“type”: “select”,
“id”: “description_location”,
“label”: “Description location”,
“default”: “beside”,
“options”: [
{
“value”: “beside”,
“label”: “Beside main image, under price”
},
{
“value”: “below”,
“label”: “Underneath image and price”
}
]
},
{
“type”: “header”,
“content”: “Media”
},
{
“type”: “paragraph”,
“content”: “Learn more about media types
},
{
“type”: “select”,
“id”: “gallery_size”,
“label”: “Size”,
“options”: [
{
“value”: “small”,
“label”: “Small”
},
{
“value”: “medium”,
“label”: “Medium”
},
{
“value”: “large”,
“label”: “Large”
}
],
“default”: “medium”
},
{
“type”: “radio”,
“id”: “prod_gall_thumbs_under”,
“label”: “Thumbnail position”,
“info”: “On desktop screens”,
“options”: [
{
“value”: “beside”,
“label”: “Beside main image”
},
{
“value”: “under”,
“label”: “Underneath main image”
}
],
“default”: “under”
},
{
“type”: “checkbox”,
“id”: “enable_zoom”,
“label”: “Enable image zoom”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “enable_video_looping”,
“label”: “Enable video looping”,
“default”: false
}
]
}
{% endschema %}

I have following apps:

magnalister

This is product-template.liquid:

{%- assign current_variant = product.selected_or_first_available_variant -%}
{%- assign zoom_size = ‘master’ -%}

{%- if template contains ‘lightbox’ -%}
{%- assign in_lightbox = true -%}
{%- else -%}
{%- assign in_lightbox = false -%}
{%- endif -%}

{% if in_lightbox == false %}
{% if section.settings.show_tags and product.tags.size > 0 %} {{ 'products.product.tags' | t }} + {% endif %}

{% if section.settings.show_type %}
{%- assign product_type_handle = product.type | handle -%}
{%- if collections[product_type_handle].handle == product_type_handle -%}
{%- assign type_url = collections[product_type_handle].url -%}
{%- else -%}
{%- assign type_url = product.type | url_for_type -%}
{%- endif -%}
{{ ‘products.product.see_more_of_this_type’ | t }} {{ product.type | link_to: type_url }}
{% endif %}

{% if section.settings.show_tags and product.tags.size > 0 %}

    {%- for tag in product.tags -%}
  • {{ tag }}
  • {%- endfor -%}
{% endif %} {%- endif -%}

{%- assign lightbox_size = ‘master’ -%}
{%- assign min_aspect_ratio = 0.6 -%}

{% assign myImages = product.images %}
{% assign myVideos = product.media | where: ‘media_type’, ‘video’ %}
{% assign myImages = myImages | push: product.featured_media %}

{%- assign initial_slide = 0 -%}
{%- for media in myImages -%} {%- endfor -%} {% if myVideos.size > 0 %} {%- for media in myVideos -%} {%- render 'media', media: media, min_aspect_ratio: min_aspect_ratio -%} {%- endfor -%} {% endif %}

{%- if in_lightbox == false -%}
{%- assign models = product.media | where: ‘media_type’, ‘model’ -%}
{% if models.size > 0 %}


{%- render ‘icon-3d-badge-full-color’ -%}
{{ ‘products.product.view_in_space’ | t }}

{% endif %}
{%- endif -%}

{% if myImages.size > 1 %}

{% endif %}

{%- if settings.swatch_enabled and settings.swatch_images -%}

{%- for product_option in product.options_with_values -%} {%- if product_option.name == settings.swatch_option_name -%} {%- for value in product_option.values -%} {%- assign swatch_value = value | handle -%} .option--{{ settings.swatch_option_name | handle }} select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--{{ swatch_value }}::before, .swatch-option__nugget.bg-{{ swatch_value }} { background-image: url({{ swatch_value | append: '.png' | file_img_url: '48x48', crop: 'center' }}); } {%- endfor -%} {%- endif -%} {%- endfor -%}

{%- endif -%}

{{ product.title }}

{% render ‘product-label-detail’, product: product, current_variant: current_variant %}

{{ current_variant.price | money }} {% if current_variant.compare_at_price > current_variant.price %} {{ current_variant.compare_at_price | money }} {% endif %}

{% render ‘unit-price’, variant: current_variant %}

{%- if section.settings.show_tax_and_shipping -%}
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}

{%- if shop.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 -%}
{%- endif -%} {%- endif -%}

{% if section.settings.show_vendor or section.settings.show_sku %}

{%- if section.settings.show_vendor -%} {%- comment -%} Do we have a collection that has the same name as our product vendor name? If we do, let's have the vendor link point to it. If not, we will point to the automatic vendor collection. {%- endcomment -%} {%- assign product_vendor_handle = product.vendor | handle -%} {%- if collections[product_vendor_handle].handle == product_vendor_handle -%} {%- assign vendor_url = collections[product_vendor_handle].url -%} {%- else -%} {%- assign vendor_url = product.vendor | url_for_vendor -%} {%- endif -%}
{{ 'products.product.vendor' | t }} {{ product.vendor | link_to: vendor_url }}
{%- endif -%}

{%- if section.settings.show_sku -%}

{{ 'products.product.sku' | t }} {{ product.selected_or_first_available_variant.sku }}
{%- endif -%} {% render 'product-delivery', product: product %}
{% endif %}

{% form ‘product’, product, class: ‘form’, data-ajax-add-to-cart: true, data-product-id: product.id, data-enable-history-state: ‘true’ %}

{% if product.variants.size > 1 %}
{% for option in product.options_with_values %}
{{ option.name }}

{% if settings.show_size_chart and option.name == settings.size_chart_variant %}

{{ 'products.product.size_chart' | t }}
{{ pages[settings.size_chart_page].content }}
{% endif %}

{% endfor %}

{% else %}

{% unless product.has_only_default_variant %}

{% for option in product.options %} {% assign opt_idx = 'option' | append: forloop.index %} {{ option }}: {{ product.variants.first[opt_idx] }}

{% if settings.show_size_chart and option == settings.size_chart_variant %}

{{ 'products.product.size_chart' | t }}
{{ pages[settings.size_chart_page].content }}
{% endif %} {% endfor %}
{% endunless %}

{% endif %}

{% if product.available %}
{% if section.settings.show_inventory_notice %}
{%- capture inventory_notice -%}
{%- if current_variant.inventory_management == ‘shopify’ and current_variant.inventory_quantity > 0 -%}
{%- if section.settings.inventory_notice_threshold == 0 or current_variant.inventory_quantity <= section.settings.inventory_notice_threshold -%}

{{- 'products.labels.only_x_left' | t: quantity: current_variant.inventory_quantity -}}
{%- else -%}
{%- endif -%} {%- else -%}
{%- endif -%} {%- endcapture -%} {% endif %}

{% unless section.settings.show_quantity_selector %}{{ inventory_notice }}{% endunless %}

{% if section.settings.show_quantity_selector %} {{ 'products.product.quantity' | t }} {{ inventory_notice }} {% endif %} {% include 'iwish_v2' with 'iwishproduct' %}
{% if section.settings.enable_payment_button and product.selling_plan_groups == empty %} {{ form | payment_button }} {% endif %}

{% if section.settings.show_backorder_text == true %}
{% render ‘backorder’, product: product, variant: current_variant %}
{% endif %}

{%- unless in_lightbox or section.settings.show_pickup_availability == false -%}
{% render ‘store-availability’, product: product, current_variant: current_variant %}
{%- endunless -%}

{% else %}

{{ 'products.product.product_unavailable' | t }}
{% endif %} {% endform %}

{%- if in_lightbox -%}

{%- endif -%}

{% if section.settings.description_location == ‘beside’ and in_lightbox == false %}

{{ product.description }}

{% comment %} Add code to show under the description on the line below this one, if beside the image {% endcomment %}

{% endif %}

{% if in_lightbox %}

{% else %} {% if section.settings.show_sharing_links %}
{% render 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product %}
{% endif %} {% endif %}

{% if section.settings.description_location == ‘below’ and in_lightbox == false %}

{{ product.description }}

{% comment %} Add code to show under the description on the line below this one, if full-width underneath the image {% endcomment %}

{% endif %}

{% if in_lightbox == false %}

{% if section.settings.show_tags and product.tags.size > 0 %}
{{ 'products.product.tags' | t }}
    {% for tag in product.tags %}
  • {{ tag }}
  • {% endfor %}
{% endif %} {% if section.settings.show_sharing_links %}
{% render 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product %}
{% endif %}
{% if collection.previous_product %} {% render 'svg-chevron-left' %} {% endif %}
{%- if section.settings.show_type and product.type != blank -%} {%- assign product_type_handle = product.type | handle -%} {%- if collections[product_type_handle].handle == product_type_handle -%} {%- assign type_url = collections[product_type_handle].url -%} {%- else -%} {%- assign type_url = product.type | url_for_type -%} {%- endif -%} {{ product.type | link_to: type_url }} {% endif %}
{% if collection.next_product %} {% render 'svg-chevron-right' %} {% endif %}
{{ product.metafields.spr.reviews }}
{% endif %}

{% schema %}
{
“name”: “Product pages”,
“class”: “section-product-template”,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_tax_and_shipping”,
“label”: “Show tax status and shipping policy link”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “show_vendor”,
“label”: “Show vendor”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_type”,
“label”: “Show type”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “show_sku”,
“label”: “Show SKU”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “show_quantity_selector”,
“label”: “Show quantity selector”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “enable_payment_button”,
“label”: “Show dynamic checkout button”,
“info”: “Each customer will see their preferred payment method from those available on your store, such as PayPal or Apple Pay. Learn more”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_pickup_availability”,
“label”: “Show pickup availability”,
“default”: true,
“info”: “Show customers where they can pick up the product. Learn more
},
{
“type”: “checkbox”,
“id”: “show_backorder_text”,
“label”: “Show backorder text”,
“default”: true,
“info”: “Only shows for products which use Shopify inventory tracking and are available to purchase when out of stock.”
},
{
“type”: “checkbox”,
“id”: “show_inventory_notice”,
“label”: “Show inventory notice”,
“default”: false
},
{
“type”: “range”,
“id”: “inventory_notice_threshold”,
“min”: 0,
“max”: 100,
“step”: 1,
“label”: “Inventory threshold”,
“info”: “Show inventory quantities below this threshold. Choose 0 to show full amount.”,
“default”: 10
},
{
“type”: “checkbox”,
“id”: “show_sharing_links”,
“label”: “Show social sharing icons”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_tags”,
“label”: “Show tags”,
“default”: false
},
{
“type”: “select”,
“id”: “description_location”,
“label”: “Description location”,
“default”: “beside”,
“options”: [
{
“value”: “beside”,
“label”: “Beside main image, under price”
},
{
“value”: “below”,
“label”: “Underneath image and price”
}
]
},
{
“type”: “header”,
“content”: “Media”
},
{
“type”: “paragraph”,
“content”: “Learn more about media types
},
{
“type”: “select”,
“id”: “gallery_size”,
“label”: “Size”,
“options”: [
{
“value”: “small”,
“label”: “Small”
},
{
“value”: “medium”,
“label”: “Medium”
},
{
“value”: “large”,
“label”: “Large”
}
],
“default”: “medium”
},
{
“type”: “radio”,
“id”: “prod_gall_thumbs_under”,
“label”: “Thumbnail position”,
“info”: “On desktop screens”,
“options”: [
{
“value”: “beside”,
“label”: “Beside main image”
},
{
“value”: “under”,
“label”: “Underneath main image”
}
],
“default”: “under”
},
{
“type”: “checkbox”,
“id”: “enable_zoom”,
“label”: “Enable image zoom”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “enable_video_looping”,
“label”: “Enable video looping”,
“default”: false
}
]
}
{% endschema %}

I have following apps:

magnalister

Trusted Shops Easy Integration

Cart2Cart Store Migration App
SellUp - Upsell & Add ons

SmartTabs: Product Tabs

Power Tools Suite

Google Reviews by HomePage[0]

IT-Recht AGB

iWish: Wishlist

Billbee

Email

This is product-template.liquid:

{%- assign current_variant = product.selected_or_first_available_variant -%}
{%- assign zoom_size = ‘master’ -%}

{%- if template contains ‘lightbox’ -%}
{%- assign in_lightbox = true -%}
{%- else -%}
{%- assign in_lightbox = false -%}
{%- endif -%}

{% if in_lightbox == false %}
{% if section.settings.show_tags and product.tags.size > 0 %} {{ 'products.product.tags' | t }} + {% endif %}

{% if section.settings.show_type %}
{%- assign product_type_handle = product.type | handle -%}
{%- if collections[product_type_handle].handle == product_type_handle -%}
{%- assign type_url = collections[product_type_handle].url -%}
{%- else -%}
{%- assign type_url = product.type | url_for_type -%}
{%- endif -%}
{{ ‘products.product.see_more_of_this_type’ | t }} {{ product.type | link_to: type_url }}
{% endif %}

{% if section.settings.show_tags and product.tags.size > 0 %}

    {%- for tag in product.tags -%}
  • {{ tag }}
  • {%- endfor -%}
{% endif %} {%- endif -%}

{%- assign lightbox_size = ‘master’ -%}
{%- assign min_aspect_ratio = 0.6 -%}

{% assign myImages = product.images %}
{% assign myVideos = product.media | where: ‘media_type’, ‘video’ %}
{% assign myImages = myImages | push: product.featured_media %}

{%- assign initial_slide = 0 -%}
{%- for media in myImages -%} {%- endfor -%} {% if myVideos.size > 0 %} {%- for media in myVideos -%} {%- render 'media', media: media, min_aspect_ratio: min_aspect_ratio -%} {%- endfor -%} {% endif %}

{%- if in_lightbox == false -%}
{%- assign models = product.media | where: ‘media_type’, ‘model’ -%}
{% if models.size > 0 %}


{%- render ‘icon-3d-badge-full-color’ -%}
{{ ‘products.product.view_in_space’ | t }}

{% endif %}
{%- endif -%}

{% if myImages.size > 1 %}

{% endif %}

{%- if settings.swatch_enabled and settings.swatch_images -%}

{%- for product_option in product.options_with_values -%} {%- if product_option.name == settings.swatch_option_name -%} {%- for value in product_option.values -%} {%- assign swatch_value = value | handle -%} .option--{{ settings.swatch_option_name | handle }} select[data-listed][data-colour-swatch="true"] + .clickyboxes .opt--{{ swatch_value }}::before, .swatch-option__nugget.bg-{{ swatch_value }} { background-image: url({{ swatch_value | append: '.png' | file_img_url: '48x48', crop: 'center' }}); } {%- endfor -%} {%- endif -%} {%- endfor -%}

{%- endif -%}

{{ product.title }}

{% render ‘product-label-detail’, product: product, current_variant: current_variant %}

{{ current_variant.price | money }} {% if current_variant.compare_at_price > current_variant.price %} {{ current_variant.compare_at_price | money }} {% endif %}

{% render ‘unit-price’, variant: current_variant %}

{%- if section.settings.show_tax_and_shipping -%}
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}

{%- if shop.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 -%}
{%- endif -%} {%- endif -%}

{% if section.settings.show_vendor or section.settings.show_sku %}

{%- if section.settings.show_vendor -%} {%- comment -%} Do we have a collection that has the same name as our product vendor name? If we do, let's have the vendor link point to it. If not, we will point to the automatic vendor collection. {%- endcomment -%} {%- assign product_vendor_handle = product.vendor | handle -%} {%- if collections[product_vendor_handle].handle == product_vendor_handle -%} {%- assign vendor_url = collections[product_vendor_handle].url -%} {%- else -%} {%- assign vendor_url = product.vendor | url_for_vendor -%} {%- endif -%}
{{ 'products.product.vendor' | t }} {{ product.vendor | link_to: vendor_url }}
{%- endif -%}

{%- if section.settings.show_sku -%}

{{ 'products.product.sku' | t }} {{ product.selected_or_first_available_variant.sku }}
{%- endif -%} {% render 'product-delivery', product: product %}
{% endif %}

{% form ‘product’, product, class: ‘form’, data-ajax-add-to-cart: true, data-product-id: product.id, data-enable-history-state: ‘true’ %}

{% if product.variants.size > 1 %}
{% for option in product.options_with_values %}
{{ option.name }}

{% if settings.show_size_chart and option.name == settings.size_chart_variant %}

{{ 'products.product.size_chart' | t }}
{{ pages[settings.size_chart_page].content }}
{% endif %}

{% endfor %}

{% else %}

{% unless product.has_only_default_variant %}

{% for option in product.options %} {% assign opt_idx = 'option' | append: forloop.index %} {{ option }}: {{ product.variants.first[opt_idx] }}

{% if settings.show_size_chart and option == settings.size_chart_variant %}

{{ 'products.product.size_chart' | t }}
{{ pages[settings.size_chart_page].content }}
{% endif %} {% endfor %}
{% endunless %}

{% endif %}

{% if product.available %}
{% if section.settings.show_inventory_notice %}
{%- capture inventory_notice -%}
{%- if current_variant.inventory_management == ‘shopify’ and current_variant.inventory_quantity > 0 -%}
{%- if section.settings.inventory_notice_threshold == 0 or current_variant.inventory_quantity <= section.settings.inventory_notice_threshold -%}

{{- 'products.labels.only_x_left' | t: quantity: current_variant.inventory_quantity -}}
{%- else -%}
{%- endif -%} {%- else -%}
{%- endif -%} {%- endcapture -%} {% endif %}

{% unless section.settings.show_quantity_selector %}{{ inventory_notice }}{% endunless %}

{% if section.settings.show_quantity_selector %} {{ 'products.product.quantity' | t }} {{ inventory_notice }} {% endif %} {% include 'iwish_v2' with 'iwishproduct' %}
{% if section.settings.enable_payment_button and product.selling_plan_groups == empty %} {{ form | payment_button }} {% endif %}

{% if section.settings.show_backorder_text == true %}
{% render ‘backorder’, product: product, variant: current_variant %}
{% endif %}

{%- unless in_lightbox or section.settings.show_pickup_availability == false -%}
{% render ‘store-availability’, product: product, current_variant: current_variant %}
{%- endunless -%}

{% else %}

{{ 'products.product.product_unavailable' | t }}
{% endif %} {% endform %}

{%- if in_lightbox -%}

{%- endif -%}

{% if section.settings.description_location == ‘beside’ and in_lightbox == false %}

{{ product.description }}

{% comment %} Add code to show under the description on the line below this one, if beside the image {% endcomment %}

{% endif %}

{% if in_lightbox %}

{% else %} {% if section.settings.show_sharing_links %}
{% render 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product %}
{% endif %} {% endif %}

{% if section.settings.description_location == ‘below’ and in_lightbox == false %}

{{ product.description }}

{% comment %} Add code to show under the description on the line below this one, if full-width underneath the image {% endcomment %}

{% endif %}

{% if in_lightbox == false %}

{% if section.settings.show_tags and product.tags.size > 0 %}
{{ 'products.product.tags' | t }}
    {% for tag in product.tags %}
  • {{ tag }}
  • {% endfor %}
{% endif %} {% if section.settings.show_sharing_links %}
{% render 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product %}
{% endif %}
{% if collection.previous_product %} {% render 'svg-chevron-left' %} {% endif %}
{%- if section.settings.show_type and product.type != blank -%} {%- assign product_type_handle = product.type | handle -%} {%- if collections[product_type_handle].handle == product_type_handle -%} {%- assign type_url = collections[product_type_handle].url -%} {%- else -%} {%- assign type_url = product.type | url_for_type -%} {%- endif -%} {{ product.type | link_to: type_url }} {% endif %}
{% if collection.next_product %} {% render 'svg-chevron-right' %} {% endif %}
{{ product.metafields.spr.reviews }}
{% endif %}

{% schema %}
{
“name”: “Product pages”,
“class”: “section-product-template”,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_tax_and_shipping”,
“label”: “Show tax status and shipping policy link”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “show_vendor”,
“label”: “Show vendor”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_type”,
“label”: “Show type”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “show_sku”,
“label”: “Show SKU”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “show_quantity_selector”,
“label”: “Show quantity selector”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “enable_payment_button”,
“label”: “Show dynamic checkout button”,
“info”: “Each customer will see their preferred payment method from those available on your store, such as PayPal or Apple Pay. Learn more”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_pickup_availability”,
“label”: “Show pickup availability”,
“default”: true,
“info”: “Show customers where they can pick up the product. Learn more
},
{
“type”: “checkbox”,
“id”: “show_backorder_text”,
“label”: “Show backorder text”,
“default”: true,
“info”: “Only shows for products which use Shopify inventory tracking and are available to purchase when out of stock.”
},
{
“type”: “checkbox”,
“id”: “show_inventory_notice”,
“label”: “Show inventory notice”,
“default”: false
},
{
“type”: “range”,
“id”: “inventory_notice_threshold”,
“min”: 0,
“max”: 100,
“step”: 1,
“label”: “Inventory threshold”,
“info”: “Show inventory quantities below this threshold. Choose 0 to show full amount.”,
“default”: 10
},
{
“type”: “checkbox”,
“id”: “show_sharing_links”,
“label”: “Show social sharing icons”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “show_tags”,
“label”: “Show tags”,
“default”: false
},
{
“type”: “select”,
“id”: “description_location”,
“label”: “Description location”,
“default”: “beside”,
“options”: [
{
“value”: “beside”,
“label”: “Beside main image, under price”
},
{
“value”: “below”,
“label”: “Underneath image and price”
}
]
},
{
“type”: “header”,
“content”: “Media”
},
{
“type”: “paragraph”,
“content”: “Learn more about media types
},
{
“type”: “select”,
“id”: “gallery_size”,
“label”: “Size”,
“options”: [
{
“value”: “small”,
“label”: “Small”
},
{
“value”: “medium”,
“label”: “Medium”
},
{
“value”: “large”,
“label”: “Large”
}
],
“default”: “medium”
},
{
“type”: “radio”,
“id”: “prod_gall_thumbs_under”,
“label”: “Thumbnail position”,
“info”: “On desktop screens”,
“options”: [
{
“value”: “beside”,
“label”: “Beside main image”
},
{
“value”: “under”,
“label”: “Underneath main image”
}
],
“default”: “under”
},
{
“type”: “checkbox”,
“id”: “enable_zoom”,
“label”: “Enable image zoom”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “enable_video_looping”,
“label”: “Enable video looping”,
“default”: false
}
]
}
{% endschema %}

Hi @diver ,

You can edit the text by navigating to Online Store → Edit default theme content and search for the text. Make sure to click the save button once you have replaced the text.

Thanx a lot!
Under “edit default theme content” I could find the upper word inside of the banner and replace it.
The lower text of the banner and the banner itssef (the code) I still cannot find.