我在Catalog->Product->Data
選項卡中添加了額外字段Specification
。
此文本存儲在名爲specification
的列中product_description
表中。顯示額外的字段 - 在商店前端的規格
現在我想在我的Store Front(默認主題)中顯示此信息。在產品頁面上有一個顯示屬性的標籤Specification
。我想顯示specification
而不是屬性。
請建議我該怎麼辦呢:(
我在Catalog->Product->Data
選項卡中添加了額外字段Specification
。
此文本存儲在名爲specification
的列中product_description
表中。顯示額外的字段 - 在商店前端的規格
現在我想在我的Store Front(默認主題)中顯示此信息。在產品頁面上有一個顯示屬性的標籤Specification
。我想顯示specification
而不是屬性。
請建議我該怎麼辦呢:(
第一:編輯您的Product
模型 - 應該在catalog/model/product/product.php
- 找對方法getProduct
和編輯選擇產品的細節也得到了specification
列中的SQL
二:編輯您Product
控制器 - 應該在catalog/controller/product/product.php
並確保您的specification
欄將被添加到$this->data['specification']
,如
三:編輯Product
詳細信息模板 - 應該在catalog/view/theme/default/templates/product/product.tpl
,發現部分地方<div class="tabs">
(或類似) - 那麼找到規範的標籤,並打印出你的specification
列在這裏...
應該做的。
嘿這一個爲我工作!非常感謝shadyyx :) – user1321271
不客氣! – shadyyx