Hide processing details - Visual customizations - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps

Hide processing details

Client-Side

By default, when relevant, Brick will display details of payment processing, for example, reporting data that was entered incorrectly from a card or other collection creation results. If you wish, you can hide these details through the configuration below.

          
const settings = {
 initialization: {
   paymentId: 100, // payment id generated by Mercado Pago
 },
 callbacks: {
   onReady: () => {
     // callback called when Brick is ready
   },
   onError: (error) => {
     // callback called for all Brick error cases
   },
 },
 customization: {
   visual: {
       hideStatusDetails: true
   }
 }
};

        
          
const customization = {
 visual: {
   hideStatusDetails: true
 }
};

        

status-screen-brick-hide-processing-details