添加自定义字段PrestaShop 1.6

时间:2019-02-05 20:36:01

标签: prestashop prestashop-1.6

我正在尝试向产品页面的管理部分添加自定义字段(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插件作为示例?

1 个答案:

答案 0 :(得分:1)

语言字段与表ps_product不相关,语言字段与表ps_product_lang相关,这是您的问题。