{"id":374388,"date":"2023-04-27T06:36:25","date_gmt":"2023-04-27T06:36:25","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=374388"},"modified":"2023-04-27T06:38:14","modified_gmt":"2023-04-27T06:38:14","slug":"additional-info-after-the-checkout-coupon-code","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/","title":{"rendered":"Additional info after the checkout coupon code"},"content":{"rendered":"\n<p>In this blog, we are going to add an additional info after the checkout coupon code. First of all, we need to create a custom module. you can create a module using this blog&nbsp;<a href=\"https:\/\/webkul.com\/blog\/magento-development-01-module-registration\/\">Click Here<\/a>.<\/p>\n\n\n\n<p>This topic contains basic information about how you can add an extra field after the checkout coupon code<strong> <\/strong> in checkout page. In Magento , checkout is implemented using UI components. Let&#8217;s check it out how we can add an extra field after <strong>Apply discount code<\/strong> .You can customize each step by&nbsp;<a href=\"https:\/\/devdocs.magento.com\/guides\/v2.3\/howdoi\/checkout\/checkout_customize.html#change-component\">changing the JavaScript implementation or template<\/a>&nbsp;for a component. <\/p>\n\n\n\n<p><strong>Step 1 : &#8211; <\/strong>Firstly create a module using this blog <a href=\"https:\/\/webkul.com\/blog\/magento-development-01-module-registration\/\">Click Here<\/a>.<\/p>\n\n\n\n<p><strong>Step 2 :-<\/strong>  After Creating the module , You need to create the following new file:&nbsp;<code>&lt;your_module_dir&gt;\/view\/frontend\/layout\/checkout_index_index.xml<\/code>.&nbsp;<\/p>\n\n\n\n<p><strong>Step 3 : &#8211;<\/strong> In this file Add the below code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;!--\n\/**\n * Copyright \u00a9 Magento, Inc. All rights reserved.\n * See COPYING.txt for license details.\n *\/\n --&gt;\n&lt;page xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot;\n      xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:View\/Layout\/etc\/page_configuration.xsd&quot;&gt;\n    &lt;head&gt;\n        &lt;script  src=&quot;https:\/\/challenges.cloudflare.com\/custom\/v0\/api.js&quot; defer=&quot;defer&quot; async=&quot;async&quot; src_type=&quot;url&quot;\/&gt;\n    &lt;\/head&gt;\n    &lt;body&gt;\n        &lt;referenceBlock name=&quot;checkout.root&quot;&gt;\n            &lt;arguments&gt;\n                &lt;argument name=&quot;jsLayout&quot; xsi:type=&quot;array&quot;&gt;\n                    &lt;item name=&quot;components&quot; xsi:type=&quot;array&quot;&gt;\n                        &lt;item name=&quot;checkout&quot; xsi:type=&quot;array&quot;&gt;\n                            &lt;item name=&quot;children&quot; xsi:type=&quot;array&quot;&gt;\n                                &lt;item name=&quot;steps&quot; xsi:type=&quot;array&quot;&gt;\n                                    &lt;item name=&quot;children&quot; xsi:type=&quot;array&quot;&gt;\n                                        &lt;item name=&quot;billing-step&quot; xsi:type=&quot;array&quot;&gt;\n                                            &lt;item name=&quot;children&quot; xsi:type=&quot;array&quot;&gt;\n                                                &lt;item name=&quot;payment&quot; xsi:type=&quot;array&quot;&gt;\n                                                    &lt;item name=&quot;children&quot; xsi:type=&quot;array&quot;&gt;\n                                                         &lt;item name=&quot;afterMethods&quot; xsi:type=&quot;array&quot;&gt;\n                                                            &lt;item name=&quot;children&quot; xsi:type=&quot;array&quot;&gt;\n                                                                &lt;item name=&quot;couponcode-order-discount&quot; xsi:type=&quot;array&quot;&gt;\n                                                                    &lt;item name=&quot;component&quot; xsi:type=&quot;string&quot;&gt;uiComponent&lt;\/item&gt;\n                                                                    &lt;item name=&quot;children&quot; xsi:type=&quot;array&quot;&gt;\n                                                                        &lt;item name=&quot;couponcode-order-custom&quot; xsi:type=&quot;array&quot;&gt;\n                                                                            &lt;item name=&quot;component&quot; xsi:type=&quot;string&quot;&gt;Webkul_Custom\/js\/coupon\/custom&lt;\/item&gt;\n                                                                            &lt;item name=&quot;displayArea&quot; xsi:type=&quot;string&quot;&gt;captcha&lt;\/item&gt;\n                                                                            &lt;item name=&quot;formId&quot; xsi:type=&quot;string&quot;&gt;couponcode-order-custom-request&lt;\/item&gt;\n                                                                            &lt;item name=&quot;configSource&quot; xsi:type=&quot;string&quot;&gt;checkoutConfig&lt;\/item&gt;\n                                                                            &lt;item name=&quot;customId&quot; xsi:type=&quot;string&quot;&gt;trunstile-checkout-coupon-apply&lt;\/item&gt;\n                                                                        &lt;\/item&gt;\n                                                                    &lt;\/item&gt;\n                                                                &lt;\/item&gt;\n                                                            &lt;\/item&gt;\n                                                        &lt;\/item&gt;\n                                                    &lt;\/item&gt;\n                                                &lt;\/item&gt;\n                                            &lt;\/item&gt;\n                                        &lt;\/item&gt;\n                                    &lt;\/item&gt;\n                                &lt;\/item&gt;\n                            &lt;\/item&gt;\n                        &lt;\/item&gt;\n                    &lt;\/item&gt;\n                &lt;\/argument&gt;\n            &lt;\/arguments&gt;\n        &lt;\/referenceBlock&gt;\n    &lt;\/body&gt;\n&lt;\/page&gt;<\/pre>\n\n\n\n<p><strong>  Note : &#8211; <\/strong>the&nbsp;<code>&lt;Magento_Checkout_module_dir&gt;\/view\/frontend\/layout\/<\/code><\/p>\n\n\n\n<p><code>checkout_index_index.xml<\/code>&nbsp;file, find the component that you want to customize. Copy that corresponding node and all parent nodes up to&nbsp;<code>&lt;argument&gt;<\/code>. There is no need to leave all the attributes and values of parent nodes, as you are not going to change them.<\/p>\n\n\n\n<p><strong>Step 4:-<\/strong>  Change the <code>js<\/code>&nbsp;file, template or any other property as per your need<\/p>\n\n\n\n<p><strong>Step 5: &#8211;<\/strong> After this we need to create the following new file:&nbsp;<code>&lt;your_module_dir&gt;\/view\/frontend\/web\/js\/coupon\/custom<\/code>.js<\/p>\n\n\n\n<p><strong>Step 6: &#8211;<\/strong> Add the following code in this file<\/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\/* global grecaptcha *\/\ndefine(\n    &#091;\n        &#039;uiComponent&#039;,\n        &#039;jquery&#039;\n    ], function (Component, $) {\n        &#039;use strict&#039;;\n        \/\/add validation using additional valiator\n        return Component.extend({\n            defaults: {\n                template: &#039;Webkul_Custom\/coupon\/custom&#039;\n            },\n\n            initialize: function () {\n                this._super();\n            },\n        });\n    });<\/pre>\n\n\n\n<p><strong>Step 7: &#8211;<\/strong> In this above code, we define the template where you need to add your custom code as per your need.<\/p>\n\n\n\n<p><strong>Step 8 :- <\/strong> After this, we need to create the following new file:&nbsp;<code>&lt;your_module_dir&gt;\/view\/frontend\/web\/template\/coupon\/custom<\/code>.html and add the following code in this file<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;b&gt;You can apply coupon from here&lt;\/b&gt;<\/pre>\n\n\n\n<p>After completing all the steps it will look like this.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"593\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121-1200x593.jpg\" alt=\"apply discount code additional info\" class=\"wp-image-378479\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121-1200x593.jpg 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121-300x148.jpg 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121-250x124.jpg 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121-768x380.jpg 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121.jpg 1293w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>If you want to add Additional info on the Checkout Payment Page you can checkout our this blog <a href=\"https:\/\/webkul.com\/blog\/additional-info-on-the-checkout-payment-page\/\">click here<\/a><\/p>\n\n\n\n<p>You can check it out the magento blog how you can <strong>Customize the view of a checkout step<\/strong> <a href=\"https:\/\/devdocs.magento.com\/guides\/v2.3\/howdoi\/checkout\/checkout_customize.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Click Here<\/a><\/p>\n\n\n\n<p>I hope you like this blog \ud83d\ude42<a href=\"https:\/\/devdocs.magento.com\/guides\/v2.3\/howdoi\/checkout\/checkout_customize.html#move-a-component\" target=\"_blank\" rel=\"noreferrer noopener\"><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we are going to add an additional info after the checkout coupon code. First of all, we need to create a custom module. you can create a module using this blog&nbsp;Click Here. This topic contains basic information about how you can add an extra field after the checkout coupon code in checkout <a href=\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":385,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[12967,2070],"class_list":["post-374388","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-adobe-commerce","tag-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Additional info after the checkout coupon code - Webkul Blog<\/title>\n<meta name=\"description\" content=\"In this blog, we are going to add an additional info to the checkout coupon code. First of all, we need to create a custom module.\" \/>\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\/additional-info-after-the-checkout-coupon-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Additional info after the checkout coupon code - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In this blog, we are going to add an additional info to the checkout coupon code. First of all, we need to create a custom module.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/\" \/>\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=\"2023-04-27T06:36:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-27T06:38:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121-1200x593.jpg\" \/>\n<meta name=\"author\" content=\"Ajay Singh\" \/>\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=\"Ajay Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/\"},\"author\":{\"name\":\"Ajay Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/83ccffc2cbfde72f906f933bdc7dd20b\"},\"headline\":\"Additional info after the checkout coupon code\",\"datePublished\":\"2023-04-27T06:36:25+00:00\",\"dateModified\":\"2023-04-27T06:38:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/\"},\"wordCount\":326,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121-1200x593.jpg\",\"keywords\":[\"Adobe Commerce\",\"Magento2\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/\",\"url\":\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/\",\"name\":\"Additional info after the checkout coupon code - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121-1200x593.jpg\",\"datePublished\":\"2023-04-27T06:36:25+00:00\",\"dateModified\":\"2023-04-27T06:38:14+00:00\",\"description\":\"In this blog, we are going to add an additional info to the checkout coupon code. First of all, we need to create a custom module.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121.jpg\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121.jpg\",\"width\":1293,\"height\":639,\"caption\":\"Selection_121\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Additional info after the checkout coupon code\"}]},{\"@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\/83ccffc2cbfde72f906f933bdc7dd20b\",\"name\":\"Ajay Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/46a7f9944537c94d9679948e225a481f8cff0658565777b37cc5ecdd128881cb?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\/46a7f9944537c94d9679948e225a481f8cff0658565777b37cc5ecdd128881cb?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ajay Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/ajaysingh-magento149\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Additional info after the checkout coupon code - Webkul Blog","description":"In this blog, we are going to add an additional info to the checkout coupon code. First of all, we need to create a custom module.","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\/additional-info-after-the-checkout-coupon-code\/","og_locale":"en_US","og_type":"article","og_title":"Additional info after the checkout coupon code - Webkul Blog","og_description":"In this blog, we are going to add an additional info to the checkout coupon code. First of all, we need to create a custom module.","og_url":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-04-27T06:36:25+00:00","article_modified_time":"2023-04-27T06:38:14+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121-1200x593.jpg","type":"","width":"","height":""}],"author":"Ajay Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ajay Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/"},"author":{"name":"Ajay Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/83ccffc2cbfde72f906f933bdc7dd20b"},"headline":"Additional info after the checkout coupon code","datePublished":"2023-04-27T06:36:25+00:00","dateModified":"2023-04-27T06:38:14+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/"},"wordCount":326,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121-1200x593.jpg","keywords":["Adobe Commerce","Magento2"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/","url":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/","name":"Additional info after the checkout coupon code - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121-1200x593.jpg","datePublished":"2023-04-27T06:36:25+00:00","dateModified":"2023-04-27T06:38:14+00:00","description":"In this blog, we are going to add an additional info to the checkout coupon code. First of all, we need to create a custom module.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121.jpg","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Selection_121.jpg","width":1293,"height":639,"caption":"Selection_121"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/additional-info-after-the-checkout-coupon-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Additional info after the checkout coupon code"}]},{"@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\/83ccffc2cbfde72f906f933bdc7dd20b","name":"Ajay Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/46a7f9944537c94d9679948e225a481f8cff0658565777b37cc5ecdd128881cb?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\/46a7f9944537c94d9679948e225a481f8cff0658565777b37cc5ecdd128881cb?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ajay Singh"},"url":"https:\/\/webkul.com\/blog\/author\/ajaysingh-magento149\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/374388","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\/385"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=374388"}],"version-history":[{"count":4,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/374388\/revisions"}],"predecessor-version":[{"id":378498,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/374388\/revisions\/378498"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=374388"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=374388"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=374388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}