我想从 Sylius 的导航栏中的购物车中删除单词 "item/items"

I want to remove the word "item/items" from cart in the navbar in Sylius

我想删除 Sylius 导航栏中的 "item/items" 一词。只想要带有购物车图标的商品编号。

您应该覆盖 https://github.com/Sylius/Sylius/blob/f09571149926d5cee76030d4947434ddcbcb829a/src/Sylius/Bundle/ShopBundle/Resources/views/Cart/_widget.html.twig#L10 模板并删除此行(第 10 行):

{% transchoice cart.items|length %}sylius.ui.item.choice{% endtranschoice %}

更新

写而不是那行{{ cart.items|length }}

Info about template overriding