1
我正在使用Spree 0.70。將展示的產品限制爲未在Spree中刪除的產品
在我的主頁上的看法,我有以下表現出「特色」類別:
<% @taxon = Taxon.find_by_permalink('featured', :include => :products) %>
<%= render :partial => 'shared/products', :locals => {:products => @taxon.products } %>
然而,它顯示的是被刪除的產品。我怎樣才能阻止呢?
我認爲@variant.deleted_at = nil
可能是我需要使用的,但我不知道如何構建視圖。