Dynamic Variant Metafields

Display Shopify variant-specific metafields dynamically in your tables. Unlike standard product-level metafields, variant metafields update automatically when a shopper selects a different option (like changing the size or color) on your storefront.

How to Connect Variant Metafields

  • Using the Clean Table Dynamic Field (Recommended): Use the format {{ cleantVariantm.namespace.key }} in your table cell text, replacing namespace.key with your actual variant metafield namespace and key. For example, if your namespace is instructions and key is wash, use {{ cleantVariantm.instructions.wash }}.
  • Referencing the Metafield Directly: You can also use the standard Shopify Liquid format: {{ variant.metafields.namespace.key.value }} (e.g., {{ variant.metafields.custom.size.value }}).

Tips

Ensure variant metafield values are populated for all variants in the Shopify Admin; otherwise, the table cell will display empty when a variant without values is selected.