Answers:
部分答案
template\checkout\cart\totals.phtml
。-1
到renderTotals()
会渲染所有区域。因此,您必须删除$this->renderTotals('footer');
并更改$this->renderTotals();
为$this->renderTotals(-1);
示例(复制totals.phtml
到您自己的主题后):
<table id="shopping-cart-totals-table">
<col />
<col width="1" />
<tbody>
<?php echo $this->renderTotals(-1); ?>
</tbody>
</table>
进行此更改后,后端中配置的顺序将按预期工作。