Hello Magento Friends,

In Magento 2, you can customize the checkout process to enhance the user experience and provide additional information. One common requirement is to display a custom notice message before the payment step. 

Displaying a custom notice message before the payment step in Magento 2’s checkout process can be a useful feature to enhance customer experience. Whether you want to provide important payment instructions, highlight offers, or give additional information about shipping methods, adding a custom notice message can improve user awareness and trust. In this blog, we’ll walk through the steps to implement a custom notice message right before the payment step in Magento 2.

Why Add a Custom Notice Message Before Payment?

Displaying a custom message before the payment step can be beneficial for several reasons:

  • Alert Customers: Inform customers about important details like shipping delays, additional fees, or promotion details before they complete their purchase.
  • Reduce Abandoned Carts: By providing useful information upfront, you help prevent surprises at the last step that might cause customers to abandon the cart.
  • Improve Transparency: Highlight special conditions or offer clarifications to keep the checkout process smooth and transparent.

Steps to Add a Custom Notice Message Before Payment in Magento 2:

Step 1: First, we need to create a “requirejs-config.js“ file inside our extension at the following path

app\code\Vendor\Extension\view\frontend\requirejs-config.js

Then add the code as follows

Step 2: Now, we need to create a “step-navigator-mixin.js“ file inside our extension at the following path

app\code\Vendor\Extension\view\frontend\web\js\model\step-navigator-mixin.js

Now, add the code as mentioned below

Output:

checkout custom notice

Conclusion:

By following this method, you can easily add a custom notice message before the payment step in Magento 2’s checkout process. This can improve customer experience, reduce confusion, and enhance transparency during the checkout flow. You can modify the message content based on your store’s specific needs, such as displaying a warning, promotion, or any other important detail.

Adding custom messages to different stages of checkout is a great way to engage with your customers and improve their overall journey.

Happy Coding!

Click to rate this post!
[Total: 0 Average: 0]