Opencart 3类别描述可见性问题

时间:2019-02-13 06:53:55

标签: opencart categories

我正在运行OC 3.0.2.0,并且正在寻找一种仅在类别首页上显示类别描述并在1、2、3页上将其隐藏的方法。

我必须编辑category.twig文件,但是我对语法不熟悉。

我找到了一些代码,但这是用于旧版OC的。

1 个答案:

答案 0 :(得分:0)

打开控制器\catalog\controller\product\category.php和搜索代码:

if ($category_info) {
   /* here code */
   ..........

   $data['page'] = $page; // adding this code

   $this->response->setOutput($this->load->view('product/category', $data));
}

打开模板\catalog\view\theme\default\template\product

搜索:

{% if description %} 
  <div class="col-sm-10">{{ description }}</div>
{% endif %}

替换:

{% if description and page == 1  %} 
  <div class="col-sm-10">{{ description }}</div>
{% endif %}

第一部分的UPD: 添加此字符串

enter image description here