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.

In liquid templates this is achieved like so:

{{ product.metafields.book.author }}

Which returns the value of 'author' for it's key 'book'

I'm using Shopify API and Ruby on Rails and have successfully looped over each metafield for a given product:

@products = ShopifyAPI::Product.find(:all, :params => {:limit => 10})

<% product.metafields.each do |metafield| %>
<%= metafield.key %> : <%= metafield.value %>
<% end %>

This returns all of the metafields for a product, as expected. How do I return only those metafields matching a specific key i.e. 'book' from the example above?

share|improve this question

4 Answers

This seems to do the trick:

<% product.metafields.each do |metafield| %>
    <% if metafield.key == "book" %>
        <%= metafield.key %>: <%= metafield.value %><br/>
    <% end %>
<% end %>

or

<% product.metafields.each do |metafield| %>
    <% if metafield.key.include?("book") %>
        <%= metafield.key %>: <%= metafield.value %><br/>
    <% else %>
<% end %>
share|improve this answer
I imagine this is better off in the controller, rather than the view. Any adice would be cool – user1137277 Jul 18 '12 at 10:38
ShopifyAPI::Metafield.find(:all,:params=>{:product_id => product.id, :key=> 'book'})
share|improve this answer
Hi John, thanks for your answer. I'm having some trouble implementing this, would you mind elaborating on the code a little please? – user1137277 Jul 19 '12 at 16:09
This for me just returns an empty array. I've tried in IRB using minimal params i.e. ShopifyAPI::Metafield.find(:all,:params=>{:product_id => 94549896}) – user1137277 Jul 20 '12 at 15:51
This works: ShopifyAPI::Metafield.find(:first,:params=>{:resource => "products", :resource_id => 94549954, :key => "book"}) – user1137277 Jul 20 '12 at 16:09
up vote 0 down vote accepted

This works:

ShopifyAPI::Metafield.find(:first,:params=>{:resource => "products", :resource_id => 94549954, :key => "book"}) 
share|improve this answer
# add metafield
product = ShopifyAPI::Product.find(product_id)
product.add_metafield(ShopifyAPI::Metafield.new({
   :description => 'Author of book',
   :namespace => 'book',
   :key => 'author',
   :value => 'Kurt Vonnegut',
   :value_type => 'string'
}))

# retrieve metafield
author = ShopifyAPI::Metafield.find(:first,:params=>{:resource => "products", :resource_id => product.id, :namespace => "book", :key => "author"}).value

More info: http://www.shopify.com/technology/3032322-new-feature-metafields

share|improve this answer

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.