我刚刚发现了新版本的presashop(1.7.0)。
我想使用另一个javascript而不是homeslider模块默认提供的javascript。
class Ps_ImageSlider extends Module implements WidgetInterface
{
public function hookdisplayHeader($params)
{
$this->context->controller->registerStylesheet('modules-homeslider', 'modules/'.$this->name.'/css/homeslider.css', ['media' => 'all', 'priority' => 150]);
$this->context->controller->registerJavascript('modules-responsiveslides', 'modules/'.$this->name.'/js/responsiveslides.min.js', ['position' => 'bottom', 'priority' => 150]);
$this->context->controller->registerJavascript('modules-homeslider', 'modules/'.$this->name.'/js/homeslider.js', ['position' => 'bottom', 'priority' => 150]);
}
}
但是,我不能在我的主题中超载它!
你有建议的程序吗?
感谢。
答案 0 :(得分:4)
因此,对于Prestashop的根,存在一个名为:" ./ override / modules"的文件。我们只需要添加一个文件夹" ps_imageslider"和一个文件" ps_imageslider.php"然后输入以下代码:
<?php
class Ps_ImageSliderOverride extends Ps_ImageSlider{
public function hookdisplayHeader($params)
{
$this->context->controller->registerStylesheet('modules-homeslider', 'modules/'.$this->name.'/css/homeslider.css', ['media' => 'all', 'priority' => 150]);
$this->context->controller->registerJavascript('modules-YOUR_JS', 'modules/'.$this->name.'/js/YOUR_JS.js', ['position' => 'bottom', 'priority' => 150]);
$this->context->controller->registerJavascript('modules-homeslider', 'modules/'.$this->name.'/js/homeslider.js', ['position' => 'bottom', 'priority' => 150]);
}
}
最后,你必须清空缓存。
对不起我的英语(我是法语xD)。
很快见到你!