Questions tagged «mini-cart»

3
magento 2删除迷你购物车项目页面重新加载?
删除迷你购物车物品时如何重新加载页面? 我知道这是Magento 2错误。 在结帐购物车页面上,有很多产品在迷你购物车中以及当我删除时在结帐购物车页面中在迷你购物车中,内容未更新,我知道使用Ajax更新结帐购物车页面内容是一件大事,所以我在考虑何时客户从购物车中删除商品,我需要重新加载页面。


2
在抬头微型购物车中获取产品SKU
我希望能够SKU在Magento 2网站的微型购物车中展示该产品。但是我不确定如何使用KnockoutJS其他产品信息。被调用的模板在这里: vendor / magento / module-checkout / view / frontend / web / template / minicart / item / default.html 并包含如下代码: <strong class="product-item-name"> <!-- ko if: product_has_url --> <a data-bind="attr: {href: product_url}, text: product_name"></a> <!-- /ko --> <!-- ko ifnot: product_has_url --> <!-- ko text: product_name --><!-- /ko --> …


4
Magento 2在minicart.phtml中获取购物车报价总计
我试图在minicart.phtml中获得购物车报价总额,但我没有运气。我正在注入Magento \ Checkout \ Model \ Cart。 这是我的代码: $this->cart = $cart; $cartQuote= $this->cart->getQuote()->getData(); echo $cartQuote['base_grand_total']; 在我运行了该代码之后,微型购物车会破裂,并且完全从前端消失。 谢谢!

1
Magento 2以迷你车的特价显示正常价格
我可以在将自定义功能放入核心文件的同时设置“ 正常价格”和“ 特价” vendor/magento/module-weee/Block/Item/Price/Renderer.php public function getUnitItemPriceExclTax() { $priceExclTax = $this->getItem()->getProduct()->getPrice(); return $priceExclTax; } 然后将此功能调用到核心文件中 vendor/magento/module-weee/view/frontend/templates/checkout/cart/item/price/sidebar.phtml 因此,正确获取两个价格,但我想覆盖它 vendor/magento/module-weee/Block/Item/Price/Renderer.php 阻止我的自定义模块。 我用以下代码创建了di.xml: <preference for="Magento\Weee\Block\Item\Price\Renderer" type="<namespace\<module_name>\Block\Item\Price\Renderer"/> 并将该getUnitItemPriceExclTax()函数放在该块中。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.