我如何编辑结帐审核表

时间:2013-09-01 11:30:27

标签: magento html-table review

物品价格,税金和运费的确切定义在哪里?我想只强调价格而不是其他文字。

到目前为止,我在item,info和totals.phtml中尝试了几个快速和彻底的更改。对于例如在info.phtml中我添加了bgcolor ='#ff0000'。这只是我在item,info和totals.phtml中的很多地方添加它的一个例子。但我从来没有得到价格栏。

<tr><th bgcolor='#ff0000'><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th> <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th> <th class="a-right"><?php echo $this->helper('tax')->getIncExcTaxLabel(false) ?></th> <th><?php echo $this->helper('tax')->getIncExcTaxLabel(true) ?></th> </tr>

有任何建议或提示吗?

3 个答案:

答案 0 :(得分:1)

对这两个文件进行更改。

\frontend\default\YOUR-THEME-FOLDER\template\checkout\cart\render\simple.phtml

\frontend\default\YOUR-THEME-FOLDER\template\checkout\cart\render\default.phtml

答案 1 :(得分:1)

当我遇到你的问题时,处理同样的问题。

你应该改变

 app/design/frontend/base/default/template/checkout/onepage/review/item.phtml

产品的行来自此文件。

如果您使用自己的主题,则修改该主题

 app/design/frontend/enterprise/YOUR-THEME-FOLDER/template/checkout/onepage/review/item.phtml

答案 2 :(得分:0)

这个答案将取决于您使用的主题,但大多数主题在订单查看表的CSS类中不会有太大变化。订单查看表的价格列是最后一列,大多数主题(例如,默认主题)将类'last'添加到表的td元素。

您的CSS代码可能如下所示:

#checkout-review-table td.last { background-color: #ff0000; }