Change texts - Visual customizations - Mercado Pago Developers
What are you looking for?

Do not know how to start integrating? 

Check the first steps

Modify texts

Client-Side

-Brick
Customization momentWhen rendering the Brick
Propertycustomization.visual.texts.{ctaGeneralErrorLabel, ctaCardErrorLabel, ctaReturnLabel}
TypeString
CommentsWhen sending empty text, the screen will present the text defined by the default layout. On the other hand, when you submit a custom text, it will replace the default text.

If the custom texts are larger than the available space, the displayed text will be broken up to the maximum size allowed and the excess will be replaced by the "..." symbol.
          
const settings = {
    customization: {
        visual: {
            texts: {
                ctaGeneralErrorLabel: "",
                ctaCardErrorLabel: "",
                ctaReturnLabel: "",
            },
        },
    },
};

        
          
const customization = {
    visual: {
        texts: {
            ctaGeneralErrorLabel: "",
            ctaCardErrorLabel: "",
            ctaReturnLabel: "",
        },
    },
};