Re: Remove "tagged" from website title

Solved

How can I remove 'tagged' from my Dawn theme website title?

kano213
Visitor
3 0 2

I'm using the Dawn theme. Whenever I click a link in my navigation to any of my products, it shows "tagged "EXAMPLE" in the website title. Basically I want to remove the tagged collection from the website title. Where do I go about removing this? 

Accepted Solution (1)

ThomasBorowski
Shopify Partner
803 71 242

This is an accepted solution.

You probably set up your navigation menu so that the linked collection is filtered by a tag. When you then navigate to that collection via the navigation menu, the collection gets filtered by that tag, i. e. the URL changes from /collections/collectionname to /collections/collectionname/tagname, and the window title accordingly changes to reflect that the collection is being filtered by a tag.

 

This is Shopify default behaviour and I wouldn't recommend changing it. Instead create automatic collections based on the respective tags and then link those collections in the navigation menu without adding a filter to them.

★ Smart Upgrades, Tips and Tutorials for Shopify themes: cartpunk.com
Did my solution work? Help other Community members easily find the correct solution and apply it to their own stores by marking it as the Accepted Solution and giving it a Thumbs Up

View solution in original post

Replies 9 (9)

KetanKumar
Shopify Partner
37094 3645 12053

@kano213 

can you please share store url

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help
Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing

dmwwebartisan
Shopify Partner
12321 2552 3729

@kano213 

Please share your store URL! 

Thanks!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app

Zworthkey
Shopify Partner
5581 642 1578

@kano213 

Hi, 

Welcome to Shopify Community
Kindly Share your Store URL,

so that we can help you.

ThomasBorowski
Shopify Partner
803 71 242

This is an accepted solution.

You probably set up your navigation menu so that the linked collection is filtered by a tag. When you then navigate to that collection via the navigation menu, the collection gets filtered by that tag, i. e. the URL changes from /collections/collectionname to /collections/collectionname/tagname, and the window title accordingly changes to reflect that the collection is being filtered by a tag.

 

This is Shopify default behaviour and I wouldn't recommend changing it. Instead create automatic collections based on the respective tags and then link those collections in the navigation menu without adding a filter to them.

★ Smart Upgrades, Tips and Tutorials for Shopify themes: cartpunk.com
Did my solution work? Help other Community members easily find the correct solution and apply it to their own stores by marking it as the Accepted Solution and giving it a Thumbs Up
kano213
Visitor
3 0 2

You nailed it. This was exactly the fix I was looking for. I appreciate you taking the time to explain what I did wrong. Thank you!

nh-labs
Shopify Partner
4 0 2

Your solution does not solve the problem. Why is it accepted?  The templates are made for changing default behavior and customizing of the frontend. 

 

ThomasBorowski
Shopify Partner
803 71 242

It apparently fixed the problem for the OP, and without any changes to theme code.

★ Smart Upgrades, Tips and Tutorials for Shopify themes: cartpunk.com
Did my solution work? Help other Community members easily find the correct solution and apply it to their own stores by marking it as the Accepted Solution and giving it a Thumbs Up
Sonam20
Visitor
1 0 0

By doing this website name will be change 

nh-labs
Shopify Partner
4 0 2

 In the theme.liquid template file you find a code line similar to this

  {% if current_tags %}{% assign meta_tags = current_tags | join: ', ' %} –
{{ 'general.meta.tags' | t: tags: meta_tags }}{% endif %}

the 'general.meta.tags' | t: tags filter is responsible for the "tagged" output. so just replace it like
{{meta_tags }}


if you want a nice solution, this could be a hack
products with {{meta_tags | join: '_and_' | remove: ' ' | replace: '_',' ' }} 

this populates the meta_tags array with several tag values and removes the '_'