Skip to main content

Removing The Currency Options

Geoffrey Hunter
mbedded.ninja Author

One way to easily remove the currency options is to use CSS to hide the currency elements. To do this, open up your open cart's theme css file (usually found at "catalog/view/theme/<theme-name>/stylesheet/stylesheet.css"), and add the following code:

/* Hides the currency options */
#currency { display: none; }
Removing the currency options in OpenCart only takes a little CSS.