Questions tagged «totals»

3
Magento 2从购物车中删除“运费和税费”
我想摆脱购物车中的“估计运费和税费”栏。devdocs告诉我们禁用组件是一种方法,因此我尝试了以下方法: <body> <referenceBlock name="checkout.cart.shipping"> <arguments> <argument name="jsLayout" xsi:type="array"> <item name="components" xsi:type="array"> <item name="block-summary" xsi:type="array"> <!-- My custom part: --> <item name="config" xsi:type="array"> <item name="componentDisabled" xsi:type="boolean">true</item> </item> </item> </item> </argument> </arguments> </referenceBlock> </body> 没有效果。还尝试了: <referenceBlock name="checkout.cart.shipping" remove="true"/> 这样,我的总计块完全空白。 有人有建议吗?
20 magento2  layout  cart  totals 


1
自定义总订单和其他信息
想要以下总计样式时checkout/cart: 折扣 小计 运费或信息文字:“不含运费” 附加文字:“ 30欧元起免运费”(始终显示) 累计 含税 税 问题 即使我们在后端正确设置了“ Checkout Totals Sort Order ”,总计也始终显示在最后 如何在总计之间放置任何其他信息块? 如果不显示信息文本,则如何显示信息文本(装运)
14 cart  template  totals 

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.