打开购物车......每个类别不同的​​CSS

时间:2012-01-03 19:09:03

标签: opencart

我正在尝试在opencart购物车中为每个类别加载完全不同的CSS文件。我试过在header.tpl中使用switch语句,但它没有帮助我。

基本上我只有四个类别,所有类别都有不同的CSS。像56类有不同,57种不同,58种不同,59种不同。

我该怎么办?

1 个答案:

答案 0 :(得分:0)

您可以通过category.php控制器文件添加所需的css文件。

文件:

catalog/controller/product/category.php

<强>查找

$this->document->setTitle($category_info['meta_title']);

在它之前添加:

if($category_id == 20){
    $this->document->addStyle('catalog/view/theme/mytheme/stylesheet/category20.css');
}