variant metafiled - how to be visible on product page?

variant metafiled - how to be visible on product page?

VukVuckovic
Tourist
3 0 3

Hi guys,

Can anyone please help me with variant metafiled?

I created a metafield, and wrote on each variant the info I want to put there (i just need a few words description for some of my variants) but I can't make it visible on my product page. I use dawn 2.0

Replies 3 (3)

made4Uo
Shopify Partner
3849 717 1194

Hi @VukVuckovic 

 

You can add the code to show up in your product page by using custom liquid block. 

 

1. From you Admin page, go to Online store > Themes > Customize
2. Go to product page
3. Under the Product Information in your right hand, add a block called Custom liquid.

4. Inside the text box of custom liquid, place the code below

NOTE: This will show the first or selected variant description. 

{{ product.selected_or_first_available_variant.metafields.custom.description.value }}

 

To show all descriptions:

{% for variant in product.variants %}
{{ variant.metafields.custom.description.value }}
{% endfor %}

 

To hide and show the description base on customer's input, you need a javascript included. You need to have a developer write that for you

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free
VukVuckovic
Tourist
3 0 3

many tnx for your reply. i did it and this is what shows up:

 

{"type"=>"root", "children"=>[{"type"=>"paragraph", "children"=>[{"type"=>"text", "value"=>"You can buy this print framed. Click "}, {"url"=>"https://excitingcities.shop/products/washington-print", "target"=>"_blank", "type"=>"link", "children"=>[{"type"=>"text", "value"=>"HERE"}]}, {"type"=>"text", "value"=>""}]}]}

 

🙂 i have no idea what does that mean - I just need a part:

"You can buy this print framed. Click....

and then I put HERE which is a link to new product 🙂 

Zqdo
Shopify Partner
803 32 63

Hey @VukVuckovic , I saw you were able to receive some help. Were you able to figure out the issue?

banned