Skip to content

Instantly share code, notes, and snippets.

@minikomi
Created October 16, 2010 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minikomi/629601 to your computer and use it in GitHub Desktop.
Save minikomi/629601 to your computer and use it in GitHub Desktop.
Get products in same categories
<% @taxons = @product.taxons
@taxons.find(:all).each do |a|
Product.in_taxons(a).each do |product|
%>
<p>
<%= product.name %>
</p>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment