我正在尝试向产品页面的管理部分添加自定义字段(HTML文本框)。我正在这个论坛以及Google跟踪一些答案。
这是我在override/classes/Product.php
类中的代码:
class Product extends ProductCore{
public $product_modal;
function __construct( $id_product = null, $full = false, $id_lang = null, $id_shop = null, Context $context = null ) {
Product::$definition['fields']['product_modal'] = array('type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isString');
parent::__construct( $id_product, $full, $id_lang, $id_shop, $context );
}
这在informations.tpl
文件中:
<div class="form-group">
<label class="control-label col-lg-3" for="product_modal">
<span class="label-tooltip" data-toggle="tooltip"
title="{l s='Product modal'}">
{$bullet_common_field} {l s='Product modal'}
</span>
</label>
<div class="col-lg-3">
<input type="text" id="product_modal" name="product_modal" value="{$product->product_modal|escape:'html':'UTF-8'}" />
</div>
</div>
我在产品管理页面中看到了新字段,但是当我尝试保存时出现此错误:
更新对象时发生错误。产品()
如何在“产品”页面中添加新字段,是否有标准的PrestaShop方法使该字段(例如描述字段文本框)成为该字段,或者我需要第三方jQuery插件作为示例?
答案 0 :(得分:1)
语言字段与表ps_product
不相关,语言字段与表ps_product_lang
相关,这是您的问题。