You can use the same code that worked. All you have to do is to replace the class to the one you want to change. i.e. change the words in bold:
.sqs-money-native:before { content: none !important; } .sqs-money-native:after { content: ' USD' !important; }
To find the class you want to change, if you're using chrome... you can right click on your webpage, and click "inspect". Now a window will appear, on the top left hand side, there's an arrow with a box (next to Elements), click on that, and then click on your price in your cart. It will highlight and tell you class = "whatever it is here". Just replace the words in bold with the new class. It should work.
In my case, it was:
//Cart
.CartTableRow-itemPrice-26eXS:before { content: none !important; } .CartTableRow-itemPrice-26eXS:after { content: ' NZD' !important; }
//Cart subtotal
.CartTable-subtotalPrice-2JFeD:before { content: none !important; } .CartTable-subtotalPrice-2JFeD:after { content: ' NZD' !important; }
Not sure if the class is the same across the board. Hope this helps.