如何在结账页面显示总计?

时间:2017-09-22 01:41:41

标签: php opencart checkout opencart2.x opencart2.3

我正在使用OpenCart 2.3.0.2。我正在尝试将 checkout / cart.tpl 中的总计显示到 checkout / checkout.tpl ,但是当我使用购物车页面中的代码时,它不起作用:

<div class="row">
    <div class="col-sm-4 col-sm-offset-8">
      <table class="table table-bordered">
        <?php foreach ($totals as $total) { ?>
        <tr>
          <td class="text-right"><strong><?php echo $total['title']; ?>:</strong></td>
          <td class="text-right"><?php echo $total['text']; ?></td>
        </tr>
        <?php } ?>
      </table>
    </div>
  </div>

问题在于我不知道如何将总价作为变量。

1 个答案:

答案 0 :(得分:0)

At file checkout.php $data['total'] = $this->cart->getTotal();
At file checkout.tpl echo $total