Home
Documentation
Resources
Partners
Community

Resources

Check for updates on our solutions and system performance, or request technical support.

Partners

Discover our program for agencies or developers that offer integration services and sellers who want to hire them.

Community

Get the latest news, ask others for help and share your knowledge.

Hide transaction date - Visual customizations - Mercado Pago Developers

Intelligent search powered by OpenAI 

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
 }
};