Value prop - Settings - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps

Value prop

The textual content displayed within the banner and pop-up depends on the choice of a value prop.

There are five available value propositions for use, and each one enables specific customizations. The table below shows how each value proposition impacts the messages displayed in the banner:

Value propMessage on the banner
payment_methods (default)Logo Mercado Pago + "Pay by [payment method] or with your account money on Mercado Pago. Learn more" (link para pop-up)
payment_methods_logosLogos + "Available payment methods with Mercado Pago. Learn more" (link para pop-up)
installmentsLogo Mercado Pago + "Up to 12 interest-free installments with Mercado Pago. Learn more" (link para pop-up)
securityLogo Mercado Pago + "Pay safely with Mercado Pago"
creditsLogo Mercado Pago + "Up to 12 installments without cards through Mercado Pago. Learn more" (link para pop-up)

Customizations are passed to Brick through the object below, which must be sent as a third parameter in the create() method.

          
const settings = {
    customization: {
      text: {
        valueProp: "payment_methods", // optional "installments" | "payment_methods" | "security" | "payment_methods_logos" | "credits"
      },
    },
  };

        
          
const customization = {
   text: {
   valueProp: "payment_methods", // optional "installments" | "payment_methods" | "security" | "payment_methods_logos" | "credits"
    },
};