0

我已将此行添加到 catalog/controller/product/category.php

$data['string1'] = "string 1";

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

并在 catalog/view/theme/journal2/template/product/category.twig 替换

 <h4 class="name"><a href="{{ product.href }}">{{ product.name }} </a></h4> 

用这条线

<h4 class="name"><a href="{{ product.href }}">{{ product.name }}  {{  string1 }} </a></h4>

但它什么也没显示,我错过了什么?

提前致谢。

4

1 回答 1

1

我已经解决了,忘记刷新修改了。这就是问题所在。扩展 -> 修改 -> 刷新。

于 2018-01-04T11:42:33.647 回答