Change currency formatting #1161
-
Hi, how is it possible to change the formatting of the currency? For example: "DKK 1500" becomes "1.500 kr." I have tried lots of way with money component, but without any luck so far: |
Beta Was this translation helpful? Give feedback.
Answered by
juanpprieto
Jul 27, 2023
Replies: 1 comment
-
Hi @carstensbix for more flexibility you may want to try using the Here's something to get you going.. import {useMoney} from `@shopify/hydrogen`
function CustomMoney(price: MoneyV2){
const money = useMoney(price)
return <p>{`${money.withoutTrailingZeros} ${money.currencySymbol}`}</p>
} PS - Documentation for |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Makxzod
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @carstensbix for more flexibility you may want to try using the
useMoney
hook. See some use examples here. This will allow you create any format you desire.Here's something to get you going..
PS - Documentation for
useMoney
here