Hello Magento Friends,
In this blog, you will learn How to Display Order Summary in the Shipping Step of Checkout in Magento 2.
Default Magento does not provide the functionality to show an order summary on the shipping step of the checkout process. Order summary, including order subtotal, shipping charges, order total, etc., can be displayed on the shipping step of checkout.
Go ahead to find out the solution for showing the order summary in the shipping step of Magento 2 checkout.
Step 1: First, create a requirejs-config.js file inside the view folder at the given below path
app\code\Vendor\Extension\view\frontend
Now add the code as follows
var config = { config: { mixins: { 'Magento_Checkout/js/view/summary/abstract-total': { 'Vendor_Extension/js/view/summary/abstract-total-mixins': true } } } };
Step 2: In the second step, create an abstract-total-mixins.js file inside web folder at the following path
app\code\Vendor\Extension\view\frontend\web\js\view\summary
And embed the below code snippet
define([], function () { 'use strict'; var mixin = { isFullMode: function () { if (!this.getTotals()) { return false; } return true; } }; return function (target) { return target.extend(mixin); }; });
Step 3: Clear the Magento cache, and after that, you can see the Order Summary Sidebar on the right side of the checkout shipping page. Check the below image.
Hence, using the above method, you can display Order Summary in Shipping Step of Checkout in Magento 2. You can also Customize Checkout Order Summary by Adding Custom Content in Magento 2. Share the article with your friends and stay updated with us for more.
Happy Coding!
Generating image thumbnails is a common requirement in web applications, especially when handling media-heavy content.…
In today’s digital landscape, web application security is paramount. As a powerful PHP framework, Laravel…
October was an exciting month for MageComp! From significant updates across our Magento 2 extension…
In modern web development, seamless navigation and state management are crucial for delivering a smooth…
Magento Open Source 2.4.8 beta version released on October 8, 2024. The latest release of…
Hello Magento Friends, Creating catalog price rules programmatically in Magento 2 can be a valuable…
View Comments
Step 1: The file name should be requirejs-config.js not requires-config.js
Thanks for the suggestion, we have updated it.