No content to show
User Activity
08-03-2022
yes, {% if product.metafields.my_fields.list1.value[5] == blank %}this will show if 5 IS empty{% endif %} {% if product.metafields.my_fields.list1.value[5] != blank %}this will show if 5 is NOT empty{% endif %} I think you can also just use {%- else...
06-09-2022
This is pretty convoluted, so I'm assuming no, but can you reference the metafield data from a products metafield, in a different products metafield? So I have "product-a", and I enter something in "metafield-1" for that product.Then I go to "product...
I got it!The snippet you want is [card.product.liquid] and you need change "product" in {{product.metafields.my_fields to "card_product" {{card_product.metafields.my_fields For example I'm putting a free shipping badge under the product image. Find ...
Any updates? It really seems like this should be possible.
04-20-2022
For my purposes {{ product.metafields.my_fields.list1.value[1] }} this worked.I haven't looked into how to make it do a loop, where it will automatically display all the items in a list, as I don't necessarily need it to at the moment. So I'm just do...
04-11-2022
Oh do i just need to add "value"?{{ product.metafields.my_fields.list1.value[1] }}
I'm trying to take advantage of the "Accept list of values" option in the 'Single line text' metafield option.If I'm understanding how it works, I should be able to access those individual values, and display them on the page. So far all I can do is ...