(www.mkehome.com)模块css
的管理标签无效。当我点击 MODULES 时,我的结果页面没有css。控制器没有为管理模块UI调用css。当我从所需的更新列表中进行更新时,我仍然没有获得结果页面的CSS。
我让所有其他用户界面工作得很好。
topmenublock
homepage
上的悬停(JS)也停止了工作。
任何想法?
答案 0 :(得分:5)
你在后端使用什么钩子来添加CSS文件?
注意:
public function install() {
if (!parent::install() OR
!$this->registerHook('displayHeader') OR
!$this->registerHook('displayBackOfficeHeader') ....
/**
* use this for Frontend
*/
public function hookDisplayHeader() {
$this->context->controller->addCSS(($this->_path) . 'css/styles.css', 'all');
}
/**
* use this for Backoffice
*/
public function hookDisplayBackOfficeHeader() {
$this->context->controller->addCSS(($this->_path) . 'css/admin-styles.css', 'all');
$this->context->controller->addJS(array(
_PS_JS_DIR_ . 'fileuploader.js',
));
}
此致