2011-06-24 61 views

回答

1

我只是改變了位於文件:應用程序/設計/前端/基/默認/模板/結算/ onepage /審查/ 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.XX舊版本(1.4使用缺省/默認,而不是基地/默認據我記得)運行

你的路徑可能會有所不同。

另外請注意,我只註釋行回聲$這 - > renderTotals(NULL,$ _colspan);根據您的顯示稅收規則,您可能需要做的不同。但無論如何,這是顯示總計文件..

+0

非常感謝,以及如何隱藏在訂單確認電子郵件? – Bizboss

+0

在我sales.xml(位於應用程序/設計/前端/基/默認/配置) - 請參見在郵件總數的模板是:應用程序/設計/前端/基/默認/銷售/ order/totals.phtml - 這樣即可編輯文件。 –

+0

如何準確地做到這一點? 感謝您的幫助:) – Bizboss