Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can access my metafield information like so:

{% assign mf = product.metafields.Specs %}

{% unless mf == empty %}
   {% for mf in product.metafields.Specs %}
       {{ mf.first }}: {{ mf.last }} <br />
   {% endfor %}
{% endunless %}

But that doesn't get me anything but the key:value. How do I get the other information? I have tried:

{% assign mf = product.metafields.Specs %}

{% unless mf == empty %}
   {% for mf in product.metafields.Specs %}
       {{ mf.key }}: {{ mf.value }} : {{ mf.description }} <br />
   {% endfor %}
{% endunless %}

But that just gives me a list of ":" with none of the text. What am I doing wrong there?

Any help is appreciated.

share|improve this question

1 Answer

How about using this:

  {% assign mf = product.metafields.Specs %}
  {% unless mf == empty %}
    {% for f in product.metafields.Specs %}
      {{ f.first }}: {{ f.last }} : {{ mf[f.first].description }} <br />
    {% endfor %}
  {% endunless %}
share|improve this answer
Thank you for your response. That didn't work for me - the description was just blank. These things are a bit tricky! – jungalist Aug 27 '12 at 15:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.