hello, how to put size chart in my product page, i cant see, select a page in my collapsible row, thank you for the help
Hello @sebfe ,
To add a size chart to your product page, you can follow these steps:
-
Navigate to “Online Store” and then click on “Pages.”
-
Create a new page with the name “Size Chart” and add the image or table if you want to customize it.
-
Then, go to the customization section and open the default product.
-
Go to the left sidebar and select “Collapsible Row.”
-
Click on “Select Page” and choose the size chart you created.
-
Save your changes.
Can you please tell me which theme you have used?
i am using impact theme
Step 1: Navigate to Settings → Custom Data → Products. Click “Add Definition” and create a metafield named “Size Chart Image” with the type set to “file”.
Step 2: Go to Online Store → Themes → Edit Code. Search for the file named “main-product.liquid” and locate “collapsible_text”. Paste the code as shown in the attached screenshot.
Code:
{
"type": "image_picker",
"id": "image_with_text_image",
"label": "Image"
}
Step 3: Next, find the file named “accordion.liquid” and paste the code as shown in the attached screenshot.
Code:
{% if block.settings.image_with_text_image != blank %}
{%- endif -%}
this is the result, it has image option now, is it possible to have “select a page” option also, thank you
Step 1: Go to Online Store → Themes → Edit Code. Search for the file named “main-product.liquid” and locate “collapsible_text”. Paste the code as shown in the attached screenshot.
Code:
{
"type": "page",
"id": "page-size",
"label": "Page"
}
Step 3: Next, find the file named “accordion.liquid” and paste the code as shown in the attached screenshot.
Code:
{{ block.settings.page-size.content }}
What do I do if I have different size charts for different products?








