Home
Documentation
Resources
Certifications
Community
Change texts - Visual customizations - Mercado Pago Developers

Intelligent search powered by OpenAI 

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: "",
        },
    },
};