{"id":55631,"date":"2016-07-25T16:45:33","date_gmt":"2016-07-25T16:45:33","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=55631"},"modified":"2025-12-17T13:14:44","modified_gmt":"2025-12-17T13:14:44","slug":"add-date-picker-magento2-configuration-section-using-system-xml","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/","title":{"rendered":"Add Date Picker in Magento 2 Configuration Section Using system.xml"},"content":{"rendered":"\n<p>We\u2019ll explore how to add a date picker in the Magento 2 configuration section using system.xml, showing step-by-step code and setup for admin panel integration.<\/p>\n\n\n\n<p>Step1# open your module system.xml from app\/code\/NameSpace\/ModuleName\/etc\/adminhtml<\/p>\n\n\n\n<p>and following code in it<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;..\/..\/..\/Config\/etc\/system_file.xsd&quot;&gt;\n    &lt;system&gt;\n        &lt;section id=&quot;yoursectionid&quot; translate=&quot;label&quot; type=&quot;text&quot; sortOrder=&quot;10&quot; showInDefault=&quot;1&quot; showInWebsite=&quot;1&quot; showInStore=&quot;1&quot;&gt;\n            &lt;label&gt;Custom Label&lt;\/label&gt;\n            &lt;tab&gt;tabname&lt;\/tab&gt;\n            &lt;resource&gt;NameSpace_ModuleNmae::config_modulename&lt;\/resource&gt;\n            &lt;group id=&quot;general&quot; translate=&quot;label&quot; type=&quot;text&quot; sortOrder=&quot;1&quot; showInDefault=&quot;1&quot; showInWebsite=&quot;1&quot; showInStore=&quot;1&quot;&gt;\n                &lt;label&gt;General Settings&lt;\/label&gt;\n                &lt;!-- date picker field code start--&gt;\n                &lt;field id=&quot;start_date&quot; translate=&quot;label comment&quot; sortOrder=&quot;4&quot; type=&quot;date&quot; showInDefault=&quot;1&quot; showInStore=&quot;1&quot; &gt;\n                    &lt;label&gt;Start Date&lt;\/label&gt;\n                    &lt;!-- here we pass class where we create date picker--&gt;\n                    &lt;frontend_model&gt;NameSpace\\ModuleName\\Block\\DatePicker&lt;\/frontend_model&gt;\n                &lt;\/field&gt;\n                &lt;!-- date picker field code end--&gt;\n            &lt;\/group&gt;\n        &lt;\/section&gt;\n    &lt;\/system&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p>step #2 : Now we create DatePicker class in file DatePicker.php&nbsp; at app\/code\/NameSpace\/ModuleName\/Block\/ folder where we create date picker element<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nnamespace NameSpace\\ModuleName\\Block;\n\nuse Magento\\Framework\\Registry;\nuse Magento\\Backend\\Block\\Template\\Context;\n\nclass DatePicker extends \\Magento\\Config\\Block\\System\\Config\\Form\\Field\n{\n    \/**\n     * @var  Registry\n     *\/\n    protected $_coreRegistry;\n\n    \/**\n     * @param Context $context\n     * @param Registry $coreRegistry\n     * @param array $data\n     *\/\n    public function __construct(\n        Context  $context,\n        Registry $coreRegistry,\n        array    $data = &#091;]\n    )\n    {\n        $this-&gt;_coreRegistry = $coreRegistry;\n        parent::__construct($context, $data);\n    }\n\n    public function render(\\Magento\\Framework\\Data\\Form\\Element\\AbstractElement $element)\n    {\n        $element-&gt;setDateFormat(&quot;dd\/mm\/yy&quot;); \/\/set date as per requirment\n        return parent::render($element);\n    }\n}<\/pre>\n\n\n\n<p>step 3# Now in your admin section you get this datepicker element as following<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1202\" height=\"668\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Selection_068.png\" alt=\"datepicker\" class=\"wp-image-55638\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Selection_068.png 1202w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Selection_068-250x139.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Selection_068-300x167.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Selection_068-768x427.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Selection_068-1200x667.png 1200w\" sizes=\"(max-width: 1202px) 100vw, 1202px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>thanks \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We\u2019ll explore how to add a date picker in the Magento 2 configuration section using system.xml, showing step-by-step code and setup for admin panel integration. Step1# open your module system.xml from app\/code\/NameSpace\/ModuleName\/etc\/adminhtml and following code in it step #2 : Now we create DatePicker class in file DatePicker.php&nbsp; at app\/code\/NameSpace\/ModuleName\/Block\/ folder where we create date <a href=\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":4,"featured_media":54828,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,302,3286],"tags":[3415,1906,3414,2070,3413],"class_list":["post-55631","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento","category-magento2","category-magento2-1","tag-calendar","tag-configuration","tag-datepicker","tag-magento2","tag-system"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Add Date Picker in Magento 2 Configuration Section Using system.xml<\/title>\n<meta name=\"description\" content=\"How to add a date picker field in the Magento 2 admin configuration using system.xml for better control and user-friendly settings.\" \/>\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-date-picker-magento2-configuration-section-using-system-xml\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Add Date Picker in Magento 2 Configuration Section Using system.xml\" \/>\n<meta property=\"og:description\" content=\"How to add a date picker field in the Magento 2 admin configuration using system.xml for better control and user-friendly settings.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/\" \/>\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=\"2016-07-25T16:45:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-17T13:14:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Abhishek 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=\"Abhishek Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\"},\"headline\":\"Add Date Picker in Magento 2 Configuration Section Using system.xml\",\"datePublished\":\"2016-07-25T16:45:33+00:00\",\"dateModified\":\"2025-12-17T13:14:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/\"},\"wordCount\":92,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png\",\"keywords\":[\"calendar\",\"Configuration\",\"datepicker\",\"Magento2\",\"system\"],\"articleSection\":[\"magento\",\"Magento2\",\"Magento2.1\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/\",\"url\":\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/\",\"name\":\"Add Date Picker in Magento 2 Configuration Section Using system.xml\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png\",\"datePublished\":\"2016-07-25T16:45:33+00:00\",\"dateModified\":\"2025-12-17T13:14:44+00:00\",\"description\":\"How to add a date picker field in the Magento 2 admin configuration using system.xml for better control and user-friendly settings.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Add Date Picker in Magento 2 Configuration Section Using system.xml\"}]},{\"@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\/573e459f54796eb4195511990de4bfd0\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?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\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.\",\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/abhishek\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Add Date Picker in Magento 2 Configuration Section Using system.xml","description":"How to add a date picker field in the Magento 2 admin configuration using system.xml for better control and user-friendly settings.","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-date-picker-magento2-configuration-section-using-system-xml\/","og_locale":"en_US","og_type":"article","og_title":"Add Date Picker in Magento 2 Configuration Section Using system.xml","og_description":"How to add a date picker field in the Magento 2 admin configuration using system.xml for better control and user-friendly settings.","og_url":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-07-25T16:45:33+00:00","article_modified_time":"2025-12-17T13:14:44+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png","type":"image\/png"}],"author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0"},"headline":"Add Date Picker in Magento 2 Configuration Section Using system.xml","datePublished":"2016-07-25T16:45:33+00:00","dateModified":"2025-12-17T13:14:44+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/"},"wordCount":92,"commentCount":4,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png","keywords":["calendar","Configuration","datepicker","Magento2","system"],"articleSection":["magento","Magento2","Magento2.1"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/","url":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/","name":"Add Date Picker in Magento 2 Configuration Section Using system.xml","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png","datePublished":"2016-07-25T16:45:33+00:00","dateModified":"2025-12-17T13:14:44+00:00","description":"How to add a date picker field in the Magento 2 admin configuration using system.xml for better control and user-friendly settings.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/add-date-picker-magento2-configuration-section-using-system-xml\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Add Date Picker in Magento 2 Configuration Section Using system.xml"}]},{"@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\/573e459f54796eb4195511990de4bfd0","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?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\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Abhishek Singh"},"description":"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.","sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/abhishek\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/55631","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\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=55631"}],"version-history":[{"count":9,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/55631\/revisions"}],"predecessor-version":[{"id":517830,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/55631\/revisions\/517830"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/54828"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=55631"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=55631"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=55631"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}