答案 0 :(得分:0)
查找并编辑 form.phtml :
app / code / Magento / Checkout / view / frontend / templates / cart / form.phtml
,您可以轻松编辑总计和 SubTotal 的 <th>
html元素:
<caption class="table-caption"><?= $block->escapeHtml(__('Shopping Cart Items')) ?></caption>
<thead>
<tr>
<th class="col item" scope="col">
<span><?= $block->escapeHtml(__('Item')) ?></span></th>
<th class="col price" scope="col">
<span><?= $block->escapeHtml(__('Price')) ?></span></th> // remove this line for Price
<th class="col qty" scope="col">
<span><?= $block->escapeHtml(__('Qty')) ?></span></th>
<th class="col subtotal" scope="col">
<span><?= $block->escapeHtml(__('Subtotal')) ?></span></th> // remove this line for Subtotal
</tr>