Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
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
Hi, I want to ask how can I find ,,product-grid-item.liquid file,, in theme Dawn 2.0 ? I have problem with Google search console with indexing my page and I think that this problem with indexing is with duplicit product on my web. Google have problems with crawling my page and I looking for solution. I found some solution but in this theme Dawn 2.0 can't find this code. If you have any advice to help me I will be very happy for your help. Also I have some not existing pages but Google search console still showing me as a problem with no existing pages. I don't know how to delete from google console...
Thanks for your help.
Martin
oh sorry for that issue can you please share store url
hi @KetanKumar , i also need help, imtrying to find the same Product-Grid-Item.Liquid File on my Sense Theme. My website is https://www.livingful.store/
thanks
Hi Ketan, I'm also struggling with the same issue, I also can't find the product-grid-item.liquid and “<a href=”{{ product.url | within: collection }}”>” URL in my themes code. My website URL is https://healinglotusshop.com/ Can you help me find it?
Hi Ketan,
I have the issue, cant find product-grid-item.liquid or product-card-grid.liquid
Could you please help me ?
Here is my website : https://techwearstorm.com/
Thank you so much
@TheCashmereStud oh sorry for any issue if possible share more details what is exactly issue are facing on dawn theme?
Hi, I have the same problem, I can't find product-grid-item.liquid. Could you help me too? https://puraeden.shop/
@Sampsa oh sorry for that dawn theme was change file name is card-product.liquid
Hello @Fidiak ,
It's GemPages support team and glad to support you today.
You could please try finding the code in one of two files:
I hope it can help.
Best regards,
GemPages Support Team
Dear GemPages,
thanks for reply and help. I am going to fight with it.
Will let you know.
Regards Martin
its snippets card-product
Thanks for help,
as I mentioned I am looking for within: collection in this codes but unsuccessful. I want to stop shopify to duplicate product for Google search console.
Regards Martin
GemPages,
I tried to change code in mentioned parts but there is no within: collection part in this codes
I can't find it in this Dawn theme code.
So result is unsuccessful.
I think I asked wrong. I want to stop shopify to duplicate product for Google search console.
Something changed in code...
Martin
can I know what to change inside the code here , I have the same problem can you help please
Incredible, 2023 And I have the same problem.
Why Shopify duplicates all same information for different products pages??, it is absurd. I mean, there should be a reason, but for newbies like me and others, it is not easy to find a solution.
And Forums like this we find lack of actual solutions.
The video with the possible solution is (4) How to Fix Duplicate Product URLs in Shopify (2022 Update) - YouTube. sd. But can not find the file product-grid-item.liquid in snippets. Or a similar file with the code within: collection, that should solve our problem.
So, keep trying.
I've been struggling with this issue for two days and haven't been able to find a solution... It seems that Shopify is constantly changing themes' structure and files without taking into account the negative impact on a site's SEO. I'm considering migrating my client's store to another platform that is more SEO friendly.
Hi guys, anyone solved the problem?
can you please share store url so i will check and let you know
thanks you have check snnipet card-produuct
Thanks for your help Ketan!
it my pleasure to help us
Hello Ketan, I've been also struggling with this issue, I did not find product-grid-item.liquid and “<a href=”{{ product.url | within: collection }}”>” URL in my themes code. My website URL is https://lucerestore.com/. Can you help me with that How can I find it?
Hi sir, I have the same problem with finding the product-grid-item.liquid. My site is:https://designformal.com
Thanks a lot.
Thanks for reach out yes how can i help you
i got the sollution go to this file : product-card.liquid
then replace this code : <a class="card-title link-underline{% if settings.product_title_line_text != 'full' %} card-title-ellipsis{% endif %}{% if variant_selected != blank %} card-title-change{% endif %}" href="{{ product_card_product.url }}" data-product-title="{{ product_card_product.title | escape }}" data-product-url="{{ product_card_product.url }}">
to this code :
{%- liquid
...
assign product_url = product_card_product.url | split: '?' | first
assign collection_url = product_card_product.collections.first.url | split: '?' | first
-%}
...
<a class="card-title link-underline{% if settings.product_title_line_text != 'full' %} card-title-ellipsis{% endif %}{% if variant_selected != blank %} card-title-change{% endif %}" href="{{ collection_url }}{{ product_url }}" data-product-title="{{ product_card_product.title | escape }}" data-product-url="{{ collection_url }}{{ product_url }}">