Hey all, we’re linking catsy with our shopify store and we have attributes mapped in catsy to be metafields.
In Shopify we are use Tabs by station and just calling the metafield data in there which uses code like
{{ product.metafields.custom_fields[“height”] }}
This works in Debut theme but in Dawn theme instead of pulling the actual data it is just showing this as text on the page “{{ product.metafields.custom_fields[“height”] }}”
I assume I need to modify the template somewhere but have been unsuccessful, any ideas?
@JamesPyle
Please try this code .
{{ product.metafields.custom_fields.height }}
@JamesPyle
Please check the following URL for your help.
https://www.youtube.com/watch?v=9iwmt2wgRlk
Thanks!
The code itself is not the issue, my code works it just doesn’t render on Dawn theme. It is rendering the code as html text so it’s just pasted whatever code I put.
So when I put your code it does the same thing.
This also does not apply. I am not using Shopify metafields like that. I am using remapped metafields in catsy then filling them in with code.
The theme is not reading the code and I cannot find where in the theme files this code is so that I can remove the | escape portion