如何在magento 2的购物车页面中删除产品价格和小计金额

时间:2019-12-03 07:18:46

标签: magento magento2 magento-2.3

我只需要在购物车页面上显示数量商品的数量。

如果有人知道答案,请分享确切的代码和文件夹结构。因为我是磁铁迷的新人。

购物车页面截图:

enter image description here

1 个答案:

答案 0 :(得分:0)

在Magneto 2-3的以下位置

查找并编辑 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>