1
蔭新的Prestashop,IAM試圖除了標準產品,虛擬產品添加新的產品類型,包裝現有產品增加產品類型中添加的Prestashop產品頁面
添加這informations.tpl文件
的<
div class="radio">
<label for="digital_product">
<input type="radio" name="type_product" id="digital_product" {if $is_in_pack}disabled="disabled"{/if} value="{Product::PTYPE_DIGITAL}" {if $product_type == Product::PTYPE_DIGITAL}checked="checked"{/if} >
{l s='Digital product (services, booking, downloadable products, etc.)'}</label>
</div>
我想保存在新列中is_digital在ps_product table.iam在這裏遇到。請幫助。有沒有任何文檔可以用於prestashop的所有類和功能的完整工作流程?
如果你想添加一個新的產品類型,那麼你應該通過商店的_configuration_來做到這一點,而不是通過黑客入侵一個模板文件。例如,把它作爲一個類別。 – CBroe
我可以看到這個配置? –
我的意思是「配置」的一般方式(而不是黑客入侵模板)。如果您不清楚具體細節,例如如何創建新類別,請參閱文檔和/或Google。 – CBroe