Magento - 隐藏“小计”并仅显示总计在/结帐/ onepage /

时间:2011-06-24 09:25:20

标签: magento

我想隐藏Magento / checkout / onepage /中的“Subtotal”行,并仅显示“总计”行。

我该怎么做?

非常感谢

1 个答案:

答案 0 :(得分:1)

我刚刚将位于以下位置的文件:app / design / frontend / base / default / template / checkout / onepage / review / totals.phtml更改为:

<?php if ($this->getTotals()): ?>
<tfoot>
<?php $_colspan = $this->helper('tax')->displayCartBothPrices() ? 5 : 3; ?>
<?php //echo $this->renderTotals(null, $_colspan); ?>
<?php echo $this->renderTotals('footer', $_colspan); ?>
<?php if ($this->needDisplayBaseGrandtotal()):?>
  <tr>
    <td class="a-right" colspan="<?php echo $_colspan; ?>">
        <small><?php echo $this->helper('sales')->__('Your credit card will be charged for')      ?></small>
    </td>
    <td class="a-right">
        <small><?php echo $this->displayBaseGrandtotal() ?></small>
    </td>
</tr>
<?php endif?>

如果您使用的是自定义主题或在早于1.5.X.X的版本上运行,则您的路径可能会有所不同(据我所知,1.4使用默认/默认值而不是基本/默认值。)

另请注意,我只注释掉了行回显$ this-&gt; renderTotals(null,$ _colspan);根据您的展示税收规则,您可能需要做不同的事情。但无论如何,这是显示总数的文件..