prestashop图像标题自定义($ image.legend)

时间:2018-06-16 13:22:41

标签: image prestashop-1.7 caption

在我的prestashop 1.7

我正在尝试更改图例图像的使用,以将变量$ image.legend拆分为2。

在这个变量中,我想要2种类型的信息,标题和描述。

所以我增加了class / images.php中的字符大小,就像这样(1024 VARCHAR):

  'legend' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'size' => 1024),

现在在前台,我想在产品表中显示这个变量image.legend 2件(由 - 分隔)

这是我的代码,分为两部分:

$break = explode ("--", $image.legend);

如何在模板中添加$ image.legend处理?在theme / my-theme / templates / catalog / _partials / product_cover_thumbnail.tpl;

调用变量:

$break[0];

$break[1];

不可能将php放在模板中,但在哪里可以添加我的代码?

谢谢

0 个答案:

没有答案