Hello,
It looks like it came back. I removed it and could not find the extra bracket. Can you please help me?
{% comment %}EComposer_v_1_0{% endcomment %}
{%- comment -%}
Default EComposer theme
{%- endcomment -%}
{%- if current_tags -%}
{%- assign meta_tags = current_tags | join: ', ’ -%} – {{ ‘general.meta.tags’ | t: tags: meta_tags -}}
{%- endif -%}
{%- if current_page != 1 -%}
– {{ ‘general.meta.page’ | t: page: current_page }}
{%- endif -%}
{%- assign escaped_page_title = page_title | escape -%}
{%- unless escaped_page_title contains shop.name -%}
– {{ shop.name }}
{%- endunless -%}
{%- endcapture -%}
{%- if page_description -%}
{%- endif -%}
{%- assign og_title = page_title -%}
{%- assign og_url = canonical_url -%}
{%- assign og_type = ‘website’ -%}
{%- assign og_description = page_description | default: shop.description | default: shop.name -%}
{% comment %} Template specific overides {% endcomment %}
{% if template.name == ‘product’ %}
{%- assign og_title = product.title | strip_html -%}
{%- assign og_type = ‘product’ -%}
{% if product.images.size > 0 %}
{%- capture og_image_tags -%}{% for image in product.images limit:3 -%}{% endfor -%}{% endcapture -%}
{%- capture og_image_secure_url_tags -%}{% for image in product.images limit:3 -%}{% endfor -%}{% endcapture -%}
{% endif %}
{% elsif template.name == ‘article’ %}
{%- assign og_title = article.title | strip_html -%}
{%- assign og_type = ‘article’ -%}
{%- assign og_description = article.excerpt_or_content | strip_html -%}
{% if article.image %}
{%- capture og_image_tags -%}{%- endcapture -%}
{%- capture og_image_secure_url_tags -%}{%- endcapture -%}
{% endif %}
{% elsif template.name == ‘collection’ %}
{%- assign og_title = collection.title | strip_html -%}
{%- assign og_type = ‘product.group’ -%}
{% if collection.image %}
{%- capture og_image_tags -%}{%- endcapture -%}
{%- capture og_image_secure_url_tags -%}{%- endcapture -%}
{% endif %}
{% elsif template.name == ‘password’ %}
{%- assign og_title = shop.name -%}
{%- assign og_url = shop.url -%}
{%- assign og_description = shop.description | default: shop.name -%}
{% endif %}