Hiding the currency next to the price of an item.
I am working on a client’s website with an online store, and I noticed there was no easy way to remove the currency next to the price of the item. See below.
But with some basic CSS, you can easily remove it!
Add the below CSS into Design > Custom CSS:
body.native-currency-code-aud .sqs-money-native:after {
content: ' ';
}