Use different size chart in product page. Differentiate your size chart for vendor or product.type
Use different size chart for Shopify in product page. Differentiate your size chart for vendor or product.type
You can see on the live store the size chart.
Use Shopify’s pages for create your size chart:
*Also you can create a general size chart to show when there isn’t a specific too > handle pages/size-chart
Use product.vendor or product.type to differenciate your size chart:
The pages content is inside a popup, you can insert a link for call it
{% unless product.has_only_default_variant %}
<span id="szcrt"><a href="#">Size Chart</a></span>
{% endunless %}
The condition check if there is a more than one product variant and show the link for opening.
You can differentiate size chart for:
In snippets/size-chart.liquid find
for product type:
{% assign differentSizeChart_id = product.type %}
for vendor name:
{% assign differentSizeChart_id = product.vendor %}