商品价格、税金和运费的具体定义在哪里?我只想突出显示价格而不是其他文本。
到目前为止,我在 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>
有什么建议或提示吗?