Is that also the case if I want to show a metaobject on my product page using the “Custom Liquid” section?
I can not seam to get it to render/output anything.
How will I go around targeting the metaobject, that have been chosen in the individual products metafield.
I seam to get no output or a the text “MetaobjectDrop”.
I also had this problem, and for what it’s worth my dumb ass had set the metafield as an array of metaobject references, not just a single entry. What worked is e.g.:
{{ collection.metafields.custom.banner_.value_.image | image_url: width: 100 }}
The logic is when it’s just the metafield content, it’s a map of gids, but using .value makes it into a logical object with real products/images/whatever, you the .image here is an image that can then be sent through image_url.