Change texts
Client-Side
Wallet Brick offers two reading levels: the call to action (button) and the value proposition. In both cases, the text can be customized according to the options provided by Mercado Pago.
- | Description |
Customization moment | When rendering the Brick |
Property | customization.texts.{action, valueProp} |
Type | String |
Comments | When sending an empty text, the screen will present the text defined by the default layout shown after the rendering of the Brick. On the other hand, when you submit a alternative text, it will replace the default text. To check what the default texts are, check out the table below. |
Check below the texts available for alteration and a code example.
Key | Available options | Default |
action | pay, buy | pay |
valueProp | practicality, security_details, security_safety, smart_option | security_safety |
See the texts related to each option:
Key | Option | Text |
action | pay | Pay with Mercado Pago |
action | buy | Buy with Mercado Pago |
valueProp | practicality | Use saved cards or your account balance |
valueProp | security_details | Protection for your data |
valueProp | security_safety | Pay securely |
valueProp | smart_option | The text will be chosen automatically by Wallet Brick to increase the chances of sale according to the characteristics of the purchase. |
const settings = {
...,
customization: {
texts: {
action: 'buy',
valueProp: 'security_details',
},
},
}
const customization = {
visual: {
texts: {
action: 'buy',
valueProp: 'security_details'
...,
}
}
};