3
Magento/checkout/onepage /に "Subtotal"という行を隠し、 "総計"行だけを表示します。Magento - "小計"を非表示にして、総額のみを表示/チェックアウト/ワンページ/
どうすればいいですか?アプリ/設計/フロントエンド/ベース/デフォルト/テンプレート/チェックアウト/ 1ページ分/レビュー/ 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?>
たくさん
ありがとうたくさん、どのように注文の検証電子メールでそれを非表示にするには? app/design/frontend/base/default/layoutにあるsales.xmlの – Bizboss
は、のセクションを参照してください。 order/totals.phtml - 編集するファイルを指定します。 –
正確に行う方法は? ありがとうございました:) – Bizboss