How to remove the random text on my banner

I cannot find where to go to remove this. I have been looking for it all over the code setting and no luck.

Hey @Midnite

This seems like a extra bracket was added in one of your theme files, try searching for it in theme.liquid file. You might find it there.

Best Regards,

Moeed

1 Like

Thank you so much! I found it and removed it as instructed. Have a great day!

Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

1 Like

Hello,

It looks like it came back. I removed it and could not find the extra bracket. Can you please help me?

https://thepinkswanshop.com/

{% comment %}EComposer_v_1_0{% endcomment %}
{%- comment -%}
Default EComposer theme
{%- endcomment -%}

{%- if settings.favicon != blank -%} {%- endif -%} {%- capture seo_title -%} {%- if template == 'search' and search.performed == true -%} {{ 'general.search.heading' | t: count: search.results_count }}: {{ 'general.search.results_with_count' | t: terms: search.terms, count: search.results_count }} {%- else -%} {{ page_title }} {%- endif -%}

{%- 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 -%}

{{ seo_title | strip }}

{%- 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 %}

{% if template.name == 'product' %} {% endif %} {{ og_image_tags }} {{ og_image_secure_url_tags }} {%- render 'ecom_header', ECOM_THEME: true -%} {{ content_for_header }}
{{ content_for_layout }}
{%- render 'ecom_footer', ECOM_THEME: true -%}