We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

How to add "no index" code to a duplicate product page

Solved

How to add "no index" code to a duplicate product page

davidv42
Visitor
2 0 0

Hi, appreciate your help in advance. I need to duplicate a product so I have 2 product pages for the same product. There will be some very minor changes and this page will only be provided via direct links and won't be visible on the main site. However, in order to do this I would want to add "no index" code so that the search engines don't index this page or penalize me for duplicate content. Is there any way to add the necessary "no index" code to a page in shopify? Thank you for the help! David

Accepted Solution (1)

Sweet_Savior_3
Shopify Partner
1376 104 149

This is an accepted solution.

Hello @davidv42 

 

Welcome to Shopify community.

 

Yes it is possible to add noindex in theme.liquid file.

 

Open code editor > theme.liquid.

 

Search for </head> tag.

 

Add the below code.

{% if product.id == ID %}
<meta name="robots" content="noindex">
{% endif %}

 

Please replace the ID with your duplicate product id.

 

Thanks

Don't forget to like and accept the solution to help others store owners.
Looking for an expert or Have any queries ? Send query to the Inbox
Coffee Tip ? Pay to shopify.dev.34@gmail.com
From Less To Further !!!

View solution in original post

Replies 2 (2)

Sweet_Savior_3
Shopify Partner
1376 104 149

This is an accepted solution.

Hello @davidv42 

 

Welcome to Shopify community.

 

Yes it is possible to add noindex in theme.liquid file.

 

Open code editor > theme.liquid.

 

Search for </head> tag.

 

Add the below code.

{% if product.id == ID %}
<meta name="robots" content="noindex">
{% endif %}

 

Please replace the ID with your duplicate product id.

 

Thanks

Don't forget to like and accept the solution to help others store owners.
Looking for an expert or Have any queries ? Send query to the Inbox
Coffee Tip ? Pay to shopify.dev.34@gmail.com
From Less To Further !!!
davidv42
Visitor
2 0 0

Thank you for your help! Really appreciate it. I will give this a try!