Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Metaobjects displaying GID ID:s why? What is wrong?

Metaobjects displaying GID ID:s why? What is wrong?

46855004463
Tourist
21 0 2

Hello,

Im trying to make an ingredient page for our food truck. With that I made a Metaobject for each product.
Example: Ketchup, Mustard, etc etc.

And inside beside that I made another metaobject with the different allergies that the ingredients might have. Like example: Gluten, lactos, selleri, egg etc.

Now I manage to loop through the first metaobject with the different items and showing the information, But when trying to access the second metaobject that is linked inside the products metaobject, all the outputs are GID ID's with bunch of numbers. Why?

 

I mean, Ive trick to google, youtube etc etc but I cant understand what is wrong :S


46855004463_0-1694535184902.png46855004463_1-1694535272592.png

{% assign innehall_lista = shop.metaobjects.ingredienser.values %}
{% for ingredienser in innehall_lista %}
{{ olika_allergener.typ  }}
    
    <section id="{{ ingredienser.ean }}" class="mat-ingredienser">
        <h2>{{ ingredienser.produkt }}</h2>
        <p><strong>Ingredienser:</strong> {{ ingredienser.innehall }}</p>
        <p> {{ ingredienser.innehaller_allergen }}</p>
        <!-- <p><strong>Maträtt som har detta:</strong></p> -->
      
    </section>
{% endfor %} 
Replies 3 (3)

robincingh
Shopify Partner
8 0 0

Were you able to resolve it?

46855004463
Tourist
21 0 2

No 😞

violetgreendev
Shopify Partner
1 0 0

Should be

{% assign innehall_lista = shop.metaobjects.ingredienser.value %}