Help Needed: Unique Size Charts Not Displaying Correctly on Product Pages

Hi everyone,

I’m facing an issue with my website that I can’t seem to resolve. I have unique size charts for each product, and I want to display them in a collapsible row on the product information page. However, instead of showing the specific size chart for each product, the same size chart is being displayed across all product pages, which is incorrect.

Here’s what I’ve done so far:

  1. I created individual size chart pages.
  2. I set up metafield definitions for these size chart pages.
  3. I connected the metafields to the respective products.

Despite this, when I try to link the size charts as a dynamic source in my collapsible row, only one chart appears on every product page, regardless of the metafields assigned to the products.

Can anyone help me understand what I might be missing or doing wrong?

Thank you in advance!

you should use liquid in your product page to show product size chart metafield.

To link a product and its metafield in a product page using Liquid in Shopify, your can refer below code and paste them into your

main-product.liquid

{% assign specificMetafield = product.metafields.namespace.key %}

{% if specificMetafield %}
  

Specific Metafield Value: {{ specificMetafield }}

{% endif %}

Hi @MonMatelier

Could you please share with me the place where you put the size chart and where you set it up?

Best,

Daisy

Follow these steps:

1、add “collapsile row” section, and link two metefileds to the row content

2、edit two products,make sure the metafields values are unique.

3、that works well.

Feel free to let me know if you want me to help you out.If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Whyshop

Hey! I am currently facing the exact same issue.. did you mange to fix it??