Simplifying the UI
This feature is only available using the NFT Checkout with NFTs priced in USDC / USDT on Polygon or USDtz on Tezos.
By default, the Widget shows all purchase information including the cryptocurrency amount and exchange rate. This information is also available in the order details and order history:


However, if you prefer to display less information to your users, these UI elements can be hidden from the interface.
For that:
- Contact Wert’s Support team to turn this feature on for your
partner_id
. - Pass
isCryptoHidden: true
upon Widget initialisation as in the example below:
const otherWidgetOptions = {
partner_id: '{your_partner_id}',
isCryptoHidden: true,
};
As a result:
- The Widget will only load fiat amounts in the ‘You Pay’ and ‘Network fee’ sections
- ‘Exchange rate’ will not be shown
- Order details will also only contain fiat amounts and won’t display ‘Exchange rate’
- The ‘Failed order’ screen will only display the fiat amount
- Orders with
isCryptoHidden: true
will display only fiat amounts in ‘Order History’. Orders without this parameter will be displayed with both amounts.



These UI elements will also be hidden from automatic emails users get for successful orders and receipts which they manually request.
Updated 6 days ago