Is it possible to customise the pages connected to a product page ie. size guide/fabric care?

I can see that you can customize your theme to link pages to products but this seems to do it across the board for all your products rather than being able to select a specific page for a specific product? For example if you wish to add fabric care instructions for different products, one size does not fit all!

1 Like

Hi, are you responding to my post?

Hi @noemotions

I recommend a page metafield. Add a metafield to your product section after you assign the page to your product.

Follow the metafield settings I have below so you can use the code provided.

  1. From you Admin page, click Settings on the left hand bottom corner.

  2. Go to Metafields, add a product metafield

  3. Follow the settings I have below.

  1. Next, go to your theme editor. From you Admin page, go to Online store > Themes > Customize

  2. Go to your product page then add a Custom liquid block, paste the code below on the space provided. Make sure to SAVE

{% if product.metafields.custom.page.content != blank %}
{{ product.metafields.custom.page.content}}
{% endif %}