Magento 2 – Remove Currency Switcher

headermagento2multicurrency

I'm trying to remove the currency switcher from the header in Magento 2 with little luck. I've tried this in my theme's default.xml file

<referenceBlock name="store.settings.currency" remove="true"/>

But that doesn't seem to do anything. Plan B is to hide it with CSS but I feel like I should be able to remove it with a layout update.

Best Answer

Block name to remove currency should be "currency", please try:

<referenceBlock name="currency" remove="true"/>