How can I add extra text to my store's browser tab?

Have a good day,

currently only the name of my store is in my browser tab.
However, I would like to add an extra text.
I’ve already tried to change the store name in the general settings. However, this did not work as desired, as the name changes everywhere as a result.

Does anyone have an idea and can we help?

Many Thanks!

Best regards

Hi @Anonymshop

Hope this message finds you well and safe.

The HTML tag is responsible for the text in the browser tab. Located in theme.liquid: http://joxi.ru/krD86dPSKV3Kwr
Did you edit this tag by any chance? Since this tag changes depending on the page. For example, for a product page in the title, there will be a Product name - Store name.

Try to replace your current title with this one:

{% capture seo_title %}
{{ page_title }}
{% 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 %}
{% unless page_title contains shop.name %}
– {{ shop.name }}
{% endunless %}
{% endcapture %}

{{ seo_title }}

This is the default title configured for the Debut theme.

Before you change anything, create a copy of the current theme, and then edit it.

1 Like

Hi,

did you change this setting ? please refer this URL,

https://www.templatemonster.com/help/shopify-how-to-change-browser-pages-titles.html

Many thanks for your response!

However, we do not want the browser tab text to change. We want us to be able to define what is in the tab and always display it.

With which code is this possible?

Best regards!

Hey, thank you very much for your answer.

We already tried the method on this website, but we couldn’t find the Page Title section.

Did we make a mistake?

Best regards!

Hey @Anonymshop

We understand that you don’t want to change, we didn’t quite understand what do you mean here:

"However, we do not want the browser tab text to change. We want us to be able to define what is in the tab and always display it.

With which code is this possible?"

Can you please provide more details, what exactly you want to display exactly.

Hope for your answer.

Kind Regards.

1 Like

Oh please excuse me for making this so inaccurate!

We want the same text to be displayed in our entire online shop, regardless which page is accessed. The text should read: “decuse | official website”. So to summarize again: Regardless of which page our customer is on, he should always see the same text in the browser tab, as written above.

I hope that this is understandable, if you have any questions, please feel free to ask.

Best regards!

No worries about that, misunderstanding is common in Shopify Community.

Thank you for your explanation.

{{ seo_title }} - then you just need to change the content of the tag to a static value. At the moment, in each topic, the content of is a variable that is constantly changing. In the case of the example we sent, this is the {{ seo_title}} variable.

You then just write explicitly what you want instead of a variable.

For example: Decode | official website Then every page will have the same title.

Hope that helps you.

Best Regards.

2 Likes

Thank you very much for the solution

1 Like

Hi,

If you’re still experiencing issues with changing the browser tab title, we have created an app that solves the problem. You can check it out here:

https://apps.shopify.com/easy-browser-tab

Hey there! Glad to help.
Here is some valuable information.
https://app.hopps.io/videos/how-do-i-set-a-static-browser-tag-text-for-every-page-on-my-site-178a8d416bf

Happy day!