Hallo, ich bin neu in Spree und Rails als gut. Bitte helfen Sie mir mit diesem.
Ich möchte ausgewählte Taxons in der Seitenleiste für eine Seite anzeigen. Sagen wir, meine Taxonstruktur ist die folgende
Dresses -Party -sub category -Casual -sub category -sub category -Formal Pants -Party -Casual -Formal Shirts -Party -Casual -Formal
Wenn ich also in *www.host.com/t/pants*
Ich möchte nur anzeigen
Pants -Party -Casual -Formal
in der Seitenleiste und blenden Sie alle anderen Taxonbäume aus.
Bitte, helfen Sie mir dabei.
der Teilcode ist hier, der alle Taxonomien anzeigt
<nav id="taxonomies" class="sidebar-item" data-hook>
<% get_taxonomies.each do |taxonomy| %>
<h6 class='taxonomy-root'><%= t(taxonomy.name.singularize) %></h6>
<%= taxons_tree(taxonomy.root, @taxon, Spree::Config[:max_level_in_taxons_menu] || 1) %>
<% end %>
</nav>