create a text boxes for everty product in ruby on rails(shopify app) -
i have created app using ruby on rails shopify.this time app displaying available products on store.
but want text boxes every product display text box values in product page. how can achieve this? have read somewhere can done metafields
, have used below code:
in controller:
@products = shopifyapi::product.find(:all, :params => {:limit => 10})
in view:
<% @products.metafields.each |metafield| %> <%= metafield.key %> : <%= metafield.value %> <% end %>
but getting error on app page. there else need add in code?
Comments
Post a Comment