{"id":360505,"date":"2022-12-10T11:12:23","date_gmt":"2022-12-10T11:12:23","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=360505"},"modified":"2022-12-10T11:16:05","modified_gmt":"2022-12-10T11:16:05","slug":"show-cart-summary-on-checkout-step-pages-in-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/","title":{"rendered":"Show cart summary on checkout steps in Magento 2"},"content":{"rendered":"\n<p>To display cart summary on checkout step pages, we just need to override 2 core files. <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Magento_Checkout\/web\/js\/view\/summary\/shipping.js<\/li>\n\n\n\n<li>Magento_Checkout\/web\/js\/view\/summary\/abstract-total.js<\/li>\n<\/ul>\n\n\n\n<p>You can either override the above files from theme or custom module.  Here are the steps for the same: <\/p>\n\n\n\n<p><strong>1. For the shipping.js file, update <em>getValue() <\/em>function  <\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/**\n * Copyright \u00a9 Magento, Inc. All rights reserved.\n * See COPYING.txt for license details.\n *\/\n\n define(&#091;\n    &#039;jquery&#039;,\n    &#039;underscore&#039;,\n    &#039;Magento_Checkout\/js\/view\/summary\/abstract-total&#039;,\n    &#039;Magento_Checkout\/js\/model\/quote&#039;,\n    &#039;Magento_SalesRule\/js\/view\/summary\/discount&#039;\n], function ($, _, Component, quote, discountView) {\n    &#039;use strict&#039;;\n\n    return Component.extend({\n        defaults: {\n            template: &#039;Magento_Checkout\/summary\/shipping&#039;\n        },\n        quoteIsVirtual: quote.isVirtual(),\n        totals: quote.getTotals(),\n\n        \/**\n         * @return {*}\n         *\/\n        getShippingMethodTitle: function () {\n            var shippingMethod,\n                shippingMethodTitle = &#039;&#039;;\n\n            if (!this.isCalculated()) {\n                return &#039;&#039;;\n            }\n            shippingMethod = quote.shippingMethod();\n\n            if (!_.isArray(shippingMethod) &amp;&amp; !_.isObject(shippingMethod)) {\n                return &#039;&#039;;\n            }\n\n            if (typeof shippingMethod&#091;&#039;method_title&#039;] !== &#039;undefined&#039;) {\n                shippingMethodTitle = &#039; - &#039; + shippingMethod&#091;&#039;method_title&#039;];\n            }\n\n            return shippingMethodTitle ?\n                shippingMethod&#091;&#039;carrier_title&#039;] + shippingMethodTitle :\n                shippingMethod&#091;&#039;carrier_title&#039;];\n        },\n\n        \/**\n         * @return {*|Boolean}\n         *\/\n        isCalculated: function () {\n            return this.totals() &amp;&amp; this.isFullMode() &amp;&amp; quote.shippingMethod() != null; \/\/eslint-disable-line eqeqeq\n        },\n\n        \/**\n         * @return {*}\n         *\/\n        getValue: function () {\n            var price;\n\n            if (!this.isCalculated()) {\n                return this.notCalculatedMessage;\n            }\n            \/\/ price =  this.totals()&#091;&#039;shipping_amount&#039;];\/\/remove this line\n            var shippingMethod = quote.shippingMethod(); \/\/add these both line\n            var price =  shippingMethod.amount; \/\/ update data on change of the shipping method\n\n\n            return this.getFormattedPrice(price);\n        },\n\n        \/**\n         * If is set coupon code, but there wasn&#039;t displayed discount view.\n         *\n         * @return {Boolean}\n         *\/\n        haveToShowCoupon: function () {\n            var couponCode = this.totals()&#091;&#039;coupon_code&#039;];\n\n            if (typeof couponCode === &#039;undefined&#039;) {\n                couponCode = false;\n            }\n\n            return couponCode &amp;&amp; !discountView().isDisplayed();\n        },\n\n        \/**\n         * Returns coupon code description.\n         *\n         * @return {String}\n         *\/\n        getCouponDescription: function () {\n            if (!this.haveToShowCoupon()) {\n                return &#039;&#039;;\n            }\n\n            return &#039;(&#039; + this.totals()&#091;&#039;coupon_code&#039;] + &#039;)&#039;;\n        }\n    });\n});<\/pre>\n\n\n\n<p><strong>2. Change whole abstract-total.js file <\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">define(\n    &#091;\n        &#039;uiComponent&#039;,\n        &#039;Magento_Checkout\/js\/model\/quote&#039;,\n        &#039;Magento_Catalog\/js\/price-utils&#039;,\n        &#039;Magento_Checkout\/js\/model\/totals&#039;,\n        &#039;Magento_Checkout\/js\/model\/step-navigator&#039;\n    ],\n    function (Component, quote, priceUtils, totals, stepNavigator) {\n        &quot;use strict&quot;;\n        return Component.extend({\n            getFormattedPrice: function (price) {\n                return priceUtils.formatPrice(price, quote.getPriceFormat());\n            },\n            getTotals: function() {\n                return totals.totals();\n            },\n            isFullMode: function() {\n                if (!this.getTotals()) {\n                    return false;\n                }\n                \/\/return stepNavigator.isProcessed(&#039;shipping&#039;); \/\/ comment this line to enable right side bar in checkout shipping step.  \n                return true; \/\/add this line to display forcefully summary in shipping step.\n            }\n        });\n    }\n);<\/pre>\n\n\n\n<p><strong>And here is the result: shipping checkout step page<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"420\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-1200x420.png\" alt=\"Screenshot-54-1\" class=\"wp-image-360506\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-1200x420.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-300x105.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-250x88.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-768x269.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-1536x538.png 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1.png 1828w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p><strong>Payment checkout step page:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"522\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-55-1-1200x522.png\" alt=\"Screenshot-55-1\" class=\"wp-image-360507\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-55-1-1200x522.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-55-1-300x131.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-55-1-250x109.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-55-1-768x334.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-55-1-1536x668.png 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-55-1.png 1758w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p> Thanks, <\/p>\n","protected":false},"excerpt":{"rendered":"<p>To display cart summary on checkout step pages, we just need to override 2 core files. You can either override the above files from theme or custom module. Here are the steps for the same: 1. For the shipping.js file, update getValue() function 2. Change whole abstract-total.js file And here is the result: shipping checkout <a href=\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":374,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[12153,1161,13241,2070,13245,1042,347],"class_list":["post-360505","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-cart-summary","tag-checkout","tag-checkout-steps","tag-magento2","tag-order-summary","tag-payment","tag-shipping"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Show cart summary on checkout steps in Magento 2 - Webkul Blog Show cart summary on checkout step pages in magento2<\/title>\n<meta name=\"description\" content=\"Show cart summary on checkout step pages (shipping and payment) in magento 2\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Show cart summary on checkout steps in Magento 2 - Webkul Blog Show cart summary on checkout step pages in magento2\" \/>\n<meta property=\"og:description\" content=\"Show cart summary on checkout step pages (shipping and payment) in magento 2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-10T11:12:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-10T11:16:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-1200x420.png\" \/>\n<meta name=\"author\" content=\"Vikas Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vikas Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/\"},\"author\":{\"name\":\"Vikas Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/6910d43276a0e3ae1898e975fe776459\"},\"headline\":\"Show cart summary on checkout steps in Magento 2\",\"datePublished\":\"2022-12-10T11:12:23+00:00\",\"dateModified\":\"2022-12-10T11:16:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/\"},\"wordCount\":85,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-1200x420.png\",\"keywords\":[\"cart summary\",\"Checkout\",\"checkout steps\",\"Magento2\",\"order summary\",\"payment\",\"shipping\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/\",\"name\":\"Show cart summary on checkout steps in Magento 2 - Webkul Blog Show cart summary on checkout step pages in magento2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-1200x420.png\",\"datePublished\":\"2022-12-10T11:12:23+00:00\",\"dateModified\":\"2022-12-10T11:16:05+00:00\",\"description\":\"Show cart summary on checkout step pages (shipping and payment) in magento 2\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1.png\",\"width\":1828,\"height\":640,\"caption\":\"Screenshot-54-1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Show cart summary on checkout steps in Magento 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/6910d43276a0e3ae1898e975fe776459\",\"name\":\"Vikas Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a1f97f9ad9c92b4555356e4f61d353b1a80aa3cba806e550a0c12fadc7a0306e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a1f97f9ad9c92b4555356e4f61d353b1a80aa3cba806e550a0c12fadc7a0306e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Vikas Kumar\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/vikaskumar-mg117\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Show cart summary on checkout steps in Magento 2 - Webkul Blog Show cart summary on checkout step pages in magento2","description":"Show cart summary on checkout step pages (shipping and payment) in magento 2","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/","og_locale":"en_US","og_type":"article","og_title":"Show cart summary on checkout steps in Magento 2 - Webkul Blog Show cart summary on checkout step pages in magento2","og_description":"Show cart summary on checkout step pages (shipping and payment) in magento 2","og_url":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-12-10T11:12:23+00:00","article_modified_time":"2022-12-10T11:16:05+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-1200x420.png","type":"","width":"","height":""}],"author":"Vikas Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Vikas Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/"},"author":{"name":"Vikas Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/6910d43276a0e3ae1898e975fe776459"},"headline":"Show cart summary on checkout steps in Magento 2","datePublished":"2022-12-10T11:12:23+00:00","dateModified":"2022-12-10T11:16:05+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/"},"wordCount":85,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-1200x420.png","keywords":["cart summary","Checkout","checkout steps","Magento2","order summary","payment","shipping"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/","url":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/","name":"Show cart summary on checkout steps in Magento 2 - Webkul Blog Show cart summary on checkout step pages in magento2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1-1200x420.png","datePublished":"2022-12-10T11:12:23+00:00","dateModified":"2022-12-10T11:16:05+00:00","description":"Show cart summary on checkout step pages (shipping and payment) in magento 2","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-54-1.png","width":1828,"height":640,"caption":"Screenshot-54-1"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/show-cart-summary-on-checkout-step-pages-in-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Show cart summary on checkout steps in Magento 2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/6910d43276a0e3ae1898e975fe776459","name":"Vikas Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a1f97f9ad9c92b4555356e4f61d353b1a80aa3cba806e550a0c12fadc7a0306e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a1f97f9ad9c92b4555356e4f61d353b1a80aa3cba806e550a0c12fadc7a0306e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Vikas Kumar"},"url":"https:\/\/webkul.com\/blog\/author\/vikaskumar-mg117\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/360505","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/374"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=360505"}],"version-history":[{"count":2,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/360505\/revisions"}],"predecessor-version":[{"id":360509,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/360505\/revisions\/360509"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=360505"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=360505"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=360505"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}