我想添加一个新的标签在产品管理页,如特性标签,属性标签等在PS版本1.5.x与一个自定义模块。我正在添加此选项卡到产品编辑页面,以便我可以添加选项,以上传产品视频到管理员。
下面是我正在努力实现的目标的截图:

编辑
我在这里找到了一个解决方案:http://blog.belvg.com/how-to-create-a-custom-product-tab-in-prestashop.html
发布于 2013-05-23 09:51:52
您需要创建一个连接到displayAdminProductsExtra的模块。
displayAdminProductsExtra -这是附加产品标签的钩子,
在您的模块中,必须在安装函数中注册这个钩子:
!$this->registerHook('displayAdminProductsExtra')然后,您必须用这个钩子创建函数:
public function hookDisplayAdminProductsExtra($params) {
return $this->display(__FILE__, 'tab-body.tpl');
}就这样..。
https://stackoverflow.com/questions/15873620
复制相似问题