0

商品价格、税金和运费的具体定义在哪里?我只想突出显示价格而不是其他文本。

到目前为止,我在 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>

有什么建议或提示吗?

4

3 回答 3

1

对这两个文件进行更改。

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

\frontend\default\YOUR-THEME-FOLDER\template\checkout\cart\render\default.phtml
于 2013-09-02T07:33:06.213 回答
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
于 2014-01-09T13:09:42.527 回答
0

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

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

#checkout-review-table td.last { background-color: #ff0000; }
于 2013-09-01T16:01:28.170 回答