Skip to content

Change currency formatting #1161

Answered by juanpprieto
carstensbix asked this question in Help
Discussion options

You must be logged in to vote

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..

import {useMoney} from `@shopify/hydrogen`

function CustomMoney(price: MoneyV2){
  const money = useMoney(price)
  return <p>{`${money.withoutTrailingZeros} ${money.currencySymbol}`}</p>
}

PS - Documentation for useMoney here

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by carstensbix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
2 participants