0

如何向 Category.tpl 上显示的产品添加特定文本

使用此设置

<?php if ($this->request->get['path'] == 65) { ?> per month <?php } ?>

我只是不知道要使用什么属性。我需要手动为每个产品添加价格,因为在打开的购物车中,我将它们的值设置为零,但是根据他们希望服务的时间长短,需要添加项目的实际价格。

非常感谢马克

4

1 回答 1

0

打开/catalog/controller/product/category.php

找到这条线

'price'       => $price,

将其更改为

'price'       => $price . ($category_id == 65 ? ' per month' : ''),
于 2013-07-13T22:11:17.027 回答