2015-06-20 95 views
0

我正在學習Spree,因爲我想用它創建電子商務。我成功安裝了Spree,現在我想用deface定製標準狂歡模板。我試圖刪除產品頁面中的「產品屬性」標識表。更改Spree電子商務

the table I want to delete is the one under "Properties" and has 3 rows: 'size', 'type' and 'material'

我這樣做的方式,但它不工作:

Deface::Override.new(:virtual_path => 'spree/layouts/spree_application', 
     :name => 'product_page', 
     :remove => '#product-properties' 
     ) 

我認爲虛擬路徑是錯誤的。

回答