{"id":359635,"date":"2022-12-03T12:50:05","date_gmt":"2022-12-03T12:50:05","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=359635"},"modified":"2022-12-10T11:26:51","modified_gmt":"2022-12-10T11:26:51","slug":"add-a-back-button-to-the-payment-step-in-checkout","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/","title":{"rendered":"Add a back button to the payment step in checkout"},"content":{"rendered":"\n<p>To add back button on the payment step, you need to just override two core file: <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>magento\/module-checkout\/view\/frontend\/web\/js\/view\/payment.js<\/li>\n\n\n\n<li>magento\/module-checkout\/view\/frontend\/web\/template\/payment.html<\/li>\n<\/ul>\n\n\n\n<p>You can override them either from theme or by creating custom module. <\/p>\n\n\n\n<p>In payment.html file, add a back button :-<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;!--\n\/**\n * Copyright \u00a9 Magento, Inc. All rights reserved.\n * See COPYING.txt for license details.\n *\/\n--&gt;\n&lt;li id=&quot;payment&quot; role=&quot;presentation&quot; class=&quot;checkout-payment-method&quot; data-bind=&quot;fadeVisible: isVisible&quot;&gt;\n    &lt;div id=&quot;checkout-step-payment&quot;\n         class=&quot;step-content&quot;\n         data-role=&quot;content&quot;\n         role=&quot;tabpanel&quot;\n         aria-hidden=&quot;false&quot;&gt;\n        &lt;!-- ko if: (quoteIsVirtual) --&gt;\n            &lt;!-- ko foreach: getRegion(&#039;customer-email&#039;) --&gt;\n                &lt;!-- ko template: getTemplate() --&gt;&lt;!-- \/ko --&gt;\n            &lt;!--\/ko--&gt;\n        &lt;!--\/ko--&gt;\n        &lt;form id=&quot;co-payment-form&quot; class=&quot;form payments&quot; novalidate=&quot;novalidate&quot;&gt;\n            &lt;input data-bind=&#039;attr: {value: getFormKey()}&#039; type=&quot;hidden&quot; name=&quot;form_key&quot;\/&gt;\n            &lt;fieldset class=&quot;fieldset&quot;&gt;\n                &lt;legend class=&quot;legend&quot;&gt;\n                    &lt;span data-bind=&quot;i18n: &#039;Payment Information&#039;&quot;&gt;&lt;\/span&gt;\n                &lt;\/legend&gt;&lt;br \/&gt;\n                &lt;!-- ko foreach: getRegion(&#039;place-order-captcha&#039;) --&gt;\n                    &lt;!-- ko template: getTemplate() --&gt;&lt;!-- \/ko --&gt;\n                &lt;!-- \/ko --&gt;\n                &lt;br \/&gt;\n                &lt;!-- ko foreach: getRegion(&#039;beforeMethods&#039;) --&gt;\n                    &lt;!-- ko template: getTemplate() --&gt;&lt;!-- \/ko --&gt;\n                &lt;!-- \/ko --&gt;\n                &lt;div id=&quot;checkout-payment-method-load&quot; class=&quot;opc-payment&quot; data-bind=&quot;visible: isPaymentMethodsAvailable&quot;&gt;\n                    &lt;!-- ko foreach: getRegion(&#039;payment-methods-list&#039;) --&gt;\n                        &lt;!-- ko template: getTemplate() --&gt;&lt;!-- \/ko --&gt;\n                    &lt;!-- \/ko --&gt;\n                &lt;\/div&gt;\n                &lt;div class=&quot;no-quotes-block&quot; data-bind=&quot;visible: isPaymentMethodsAvailable() == false&quot;&gt;\n                    &lt;!-- ko i18n: &#039;No Payment method available.&#039;--&gt;&lt;!-- \/ko --&gt;\n                &lt;\/div&gt;\n                &lt;!-- ko foreach: getRegion(&#039;afterMethods&#039;) --&gt;\n                    &lt;!-- ko template: getTemplate() --&gt;&lt;!-- \/ko --&gt;\n                &lt;!-- \/ko --&gt;\n            &lt;\/fieldset&gt;\n        &lt;\/form&gt;\n        &lt;div class=&quot;primary&quot;&gt;\n            &lt;button data-bind=&quot;click: goToPrevStep()&quot; class=&quot;back button action primary&quot;&gt;\n                &lt;span translate=&quot;&#039;Return&#039;&quot; \/&gt;\n            &lt;\/button&gt;\n        &lt;\/div&gt;\n    &lt;\/div&gt;\n&lt;\/li&gt;<\/pre>\n\n\n\n<p>In payment.js file, you need to define goToPrevStep() function<\/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;uiComponent&#039;,\n    &#039;ko&#039;,\n    &#039;Magento_Checkout\/js\/model\/quote&#039;,\n    &#039;Magento_Checkout\/js\/model\/step-navigator&#039;,\n    &#039;Magento_Checkout\/js\/model\/payment-service&#039;,\n    &#039;Magento_Checkout\/js\/model\/payment\/method-converter&#039;,\n    &#039;Magento_Checkout\/js\/action\/get-payment-information&#039;,\n    &#039;Magento_Checkout\/js\/model\/checkout-data-resolver&#039;,\n    &#039;mage\/translate&#039;\n], function (\n    $,\n    _,\n    Component,\n    ko,\n    quote,\n    stepNavigator,\n    paymentService,\n    methodConverter,\n    getPaymentInformation,\n    checkoutDataResolver,\n    $t\n) {\n    &#039;use strict&#039;;\n\n    \/** Set payment methods to collection *\/\n    paymentService.setPaymentMethods(methodConverter(window.checkoutConfig.paymentMethods));\n\n    return Component.extend({\n        defaults: {\n            template: &#039;Magento_Checkout\/payment&#039;,\n            activeMethod: &#039;&#039;\n        },\n        isVisible: ko.observable(quote.isVirtual()),\n        quoteIsVirtual: quote.isVirtual(),\n        isPaymentMethodsAvailable: ko.computed(function () {\n            return paymentService.getAvailablePaymentMethods().length &gt; 0;\n        }),\n\n        \/** @inheritdoc *\/\n        initialize: function () {\n            this._super();\n            checkoutDataResolver.resolvePaymentMethod();\n            stepNavigator.registerStep(\n                &#039;payment&#039;,\n                null,\n                $t(&#039;Review &amp; Payments&#039;),\n                this.isVisible,\n                _.bind(this.navigate, this),\n                this.sortOrder\n            );\n\n            return this;\n        },\n\n        \/**\n         * Navigate method.\n         *\/\n        navigate: function () {\n            var self = this;\n\n            if (!self.hasShippingMethod()) {\n                this.isVisible(false);\n                stepNavigator.setHash(&#039;shipping&#039;);\n            } else {\n                getPaymentInformation().done(function () {\n                    self.isVisible(true);\n                });\n            }\n        },\n\n        \/**\n         * @return {Boolean}\n         *\/\n        hasShippingMethod: function () {\n            return window.checkoutConfig.selectedShippingMethod !== null;\n        },\n\n        \/**\n         * @return {*}\n         *\/\n        getFormKey: function () {\n            return window.checkoutConfig.formKey;\n        },\n\n        goToPrevStep: function () {\n            return stepNavigator.navigateTo(&#039;shipping&#039;);\n        }\n    });\n});<\/pre>\n\n\n\n<p>And here is the result (Return button) in bottom. <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1144\" height=\"955\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.png\" alt=\"Screenshot-from-2022-12-03-18-03-55\" class=\"wp-image-359636\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.png 1144w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55-300x250.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55-250x209.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55-768x641.png 768w\" sizes=\"(max-width: 1144px) 100vw, 1144px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Thanks..<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To add back button on the payment step, you need to just override two core file: You can override them either from theme or by creating custom module. In payment.html file, add a back button :- In payment.js file, you need to define goToPrevStep() function And here is the result (Return button) in bottom. Thanks..<\/p>\n","protected":false},"author":374,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4381,1],"tags":[1161,13209,2070,1042],"class_list":["post-359635","post","type-post","status-publish","format-standard","hentry","category-checkout","category-uncategorized","tag-checkout","tag-checkoutstep","tag-magento2","tag-payment"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Add a back button to the payment step in checkout - Webkul Blog Add a back button to the payment step in checkout<\/title>\n<meta name=\"description\" content=\"Add a back button to the payment step in checkout\" \/>\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\/add-a-back-button-to-the-payment-step-in-checkout\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Add a back button to the payment step in checkout - Webkul Blog Add a back button to the payment step in checkout\" \/>\n<meta property=\"og:description\" content=\"Add a back button to the payment step in checkout\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/\" \/>\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-03T12:50:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-10T11:26:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.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\/add-a-back-button-to-the-payment-step-in-checkout\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/\"},\"author\":{\"name\":\"Vikas Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/6910d43276a0e3ae1898e975fe776459\"},\"headline\":\"Add a back button to the payment step in checkout\",\"datePublished\":\"2022-12-03T12:50:05+00:00\",\"dateModified\":\"2022-12-10T11:26:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/\"},\"wordCount\":84,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.png\",\"keywords\":[\"Checkout\",\"checkoutstep\",\"Magento2\",\"payment\"],\"articleSection\":[\"CHECKOUT\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/\",\"url\":\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/\",\"name\":\"Add a back button to the payment step in checkout - Webkul Blog Add a back button to the payment step in checkout\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.png\",\"datePublished\":\"2022-12-03T12:50:05+00:00\",\"dateModified\":\"2022-12-10T11:26:51+00:00\",\"description\":\"Add a back button to the payment step in checkout\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.png\",\"width\":1144,\"height\":955,\"caption\":\"Screenshot-from-2022-12-03-18-03-55\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Add a back button to the payment step in checkout\"}]},{\"@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":"Add a back button to the payment step in checkout - Webkul Blog Add a back button to the payment step in checkout","description":"Add a back button to the payment step in checkout","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\/add-a-back-button-to-the-payment-step-in-checkout\/","og_locale":"en_US","og_type":"article","og_title":"Add a back button to the payment step in checkout - Webkul Blog Add a back button to the payment step in checkout","og_description":"Add a back button to the payment step in checkout","og_url":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-12-03T12:50:05+00:00","article_modified_time":"2022-12-10T11:26:51+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.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\/add-a-back-button-to-the-payment-step-in-checkout\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/"},"author":{"name":"Vikas Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/6910d43276a0e3ae1898e975fe776459"},"headline":"Add a back button to the payment step in checkout","datePublished":"2022-12-03T12:50:05+00:00","dateModified":"2022-12-10T11:26:51+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/"},"wordCount":84,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.png","keywords":["Checkout","checkoutstep","Magento2","payment"],"articleSection":["CHECKOUT"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/","url":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/","name":"Add a back button to the payment step in checkout - Webkul Blog Add a back button to the payment step in checkout","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.png","datePublished":"2022-12-03T12:50:05+00:00","dateModified":"2022-12-10T11:26:51+00:00","description":"Add a back button to the payment step in checkout","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/12\/Screenshot-from-2022-12-03-18-03-55.png","width":1144,"height":955,"caption":"Screenshot-from-2022-12-03-18-03-55"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/add-a-back-button-to-the-payment-step-in-checkout\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Add a back button to the payment step in checkout"}]},{"@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\/359635","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=359635"}],"version-history":[{"count":3,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/359635\/revisions"}],"predecessor-version":[{"id":359640,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/359635\/revisions\/359640"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=359635"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=359635"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=359635"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}