我想撤消spree_fancy主题对列表产品所做的更改。在最初的Spree中,当我浏览一个分类单元时,我收到了带有“第三列”的产品。
<div data-hook="taxon_products">
<ul id="products" class="inline product-listing" data-hook="">
<li id="product_3" class="columns three alpha" itemtype="http://schema.org/Product" itemscope="" data-hook="products_list_item">
<div class="product-image">
<a class="info" title="Ruby on Rails Baseball Jersey" itemprop="name" href="/products/ruby-on-rails-baseball-jersey">Ruby on Rails Baseball Jersey</a>
<span class="price selling" itemprop="price">$19.99</span>
</li>
但是,spree_fancy主题插入了另一个嵌套的无序列表,并将该类设置为“第四列”。我想撤消这些变化。我的第一个猜测是浏览覆盖,但我找不到引起的文件。
div data-hook="taxon_products">
<ul id="products" class="inline product-listing" data-hook="">
<li class="product-row">
<ul>
<li id="product_18" class="columns four alpha" itemtype="http://schema.org/Product" itemscope="" data-hook="products_list_item">
<div class="product-image">
<a class="info" title="Sunflower Clip Arts" itemprop="name" href="/products/sunflower-clip-arts">Sunflower Clip Arts</a>
<span class="price selling" itemprop="price">$4.00</span>
</li>
答案 0 :(得分:1)
覆盖发生在这里:
如果您在app/overrides/spree/shared/_products/group_products_list_by_3_in_row.html.erb.deface
放置一个空文件并重新启动您的网络服务器,则不应再应用此覆盖。