非常に古いバージョンの Spree (spree (0.11.0)) を使用するレガシー Rails アプリがあり、ネストされたリソースを 1 レベル上に移動する必要があります。
例: 現在のパスは: ですが、グルメ専門の部分を除いて/boutique/shop/gourmet-specialties/blah
に変更する必要があります。/boutique/shop/blah
これらのリンクが生成されるパーシャルを見つけました。
<%- if current_taxon && current_taxon.root == taxonomy.root -%>
<%- taxonomy.root.children.each do |taxon| -%>
<%- unless taxon_preview(taxon).empty? -%>
<li<%= ' class="current"' if current_taxon and ([current_taxon] + current_taxon.ancestors).include?(taxon) %>>
<%= link_to taxon.name, seo_url(taxon), :title => taxon.name %>
</li>
<%- end -%>
<%- end -%>
<%- end -%>
Spree での開始方法やルートの仕組みを教えてくれる人はいますか? ルートファイルが多すぎて、相互にやり取りする方法がわかりません。ありがとう。