In my mobile menu the first says "All Info" - see screenshot. How can I change this to simply "Info" and have the same font as "Sub Category 2" ?

enter image description here

有帮助吗?

解决方案

All word is appended by menu.js located at \vendor\magento\magento2-base\lib\web\mage\menu.js line # 286 by following code :

...

this.categoryLink = $('<a>')
.attr('href', categoryUrl)
.text($.mage.__('All ') + category);

...

So you need to extend this js and update this code by :

...

this.categoryLink = $('<a>')
.attr('href', categoryUrl)
.text(category);

...

For Extending Magento 2 default JS components, check this page

许可以下: CC-BY-SA归因
scroll top