Hide transaction date - Visual customizations - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps

Hide transaction date

Client-Side

By default, the Brick displays the data of the transaction for the user, therefore, if desired, it is possible to hide this data 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: {
       hideTransactionDate: true
   }
 }
};

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