{"id":332059,"date":"2022-05-02T05:12:52","date_gmt":"2022-05-02T05:12:52","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=332059"},"modified":"2024-05-22T09:17:04","modified_gmt":"2024-05-22T09:17:04","slug":"how-to-add-color-picker-in-magento-2-admin-configuration","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/","title":{"rendered":"How to Add Color Picker in Magento 2 Admin Configuration"},"content":{"rendered":"\n<p>In this article, We will learn about Add Color Picker in Magento 2 Admin configuration using the system.xml file. Which one admin can select the value from the color picker to show dynamic color.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step-1: Create adminhtml_system_config_edit.xml at app\/code\/Vendor\/ColorPicker\/view\/adminhtml\/layout<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;\n&lt;page xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:View\/Layout\/etc\/page_configuration.xsd&quot;&gt;\n    &lt;head&gt;\n        &lt;css src=&quot;jquery\/colorpicker\/css\/colorpicker.css&quot;\/&gt;\n    &lt;\/head&gt;\n&lt;\/page&gt;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step-2: Create system.xml at app\/code\/Vendor\/ColorPicker\/etc\/adminhtml<\/h2>\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;urn:magento:module:Magento_Config:etc\/system_file.xsd&quot;&gt;\n    &lt;system&gt;\n        &lt;tab id=&quot;Vendor&quot; sortOrder=&quot;10&quot;&gt;\n            &lt;label&gt;Vendor&lt;\/label&gt;\n        &lt;\/tab&gt;\n        &lt;section id=&quot;colorpicker&quot; translate=&quot;label&quot; type=&quot;text&quot; sortOrder=&quot;310&quot; showInDefault=&quot;1&quot; showInWebsite=&quot;0&quot; showInStore=&quot;0&quot;&gt;\n            &lt;label&gt;Colorpicker&lt;\/label&gt;\n            &lt;tab&gt;Vendor&lt;\/tab&gt;\n            &lt;resource&gt;Webkul_Colorpicker::configuration&lt;\/resource&gt;\n            &lt;group id=&quot;colorpickerSetting&quot; translate=&quot;label&quot; type=&quot;text&quot; sortOrder=&quot;1&quot; showInDefault=&quot;1&quot; showInWebsite=&quot;0&quot; showInStore=&quot;0&quot;&gt; \n            &lt;label&gt;ColorPicker Settings&lt;\/label&gt;\n                &lt;field id=&quot;theme_color&quot; translate=&quot;label&quot; sortOrder=&quot;8&quot; type=&quot;text&quot; showInDefault=&quot;1&quot; showInWebsite=&quot;0&quot; showInStore=&quot;0&quot;&gt;\n                    &lt;label&gt;Theme Color&lt;\/label&gt;\n                    &lt;validate&gt;required-entry&lt;\/validate&gt;\n                    &lt;frontend_model&gt;Vendor\\Colorpicker\\Block\\Colorpicker&lt;\/frontend_model&gt;\n                &lt;\/field&gt;\n            &lt;\/group&gt; \n        &lt;\/section&gt; \n    &lt;\/system&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step-3: Create Colorpicker.php at app\/code\/Vendor\/ColorPicker\/Block<\/strong><\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Vendor\\Colorpicker\\Block;\n\nclass Colorpicker extends \\Magento\\Config\\Block\\System\\Config\\Form\\Field\n{\n    \/**\n     * &#091;_getElementHtml used to get color from color picker]\n     *\n     * @param  \\Magento\\Framework\\Data\\Form\\Element\\AbstractElement $element\n     * @return string\n     *\/\n    protected function _getElementHtml(\\Magento\\Framework\\Data\\Form\\Element\\AbstractElement $element)\n    {\n        $html = $element-&gt;getElementHtml();\n        $value = $element-&gt;getData(&#039;value&#039;);\n\n        $html .= &#039;&lt;script type=&quot;text\/javascript&quot;&gt;\n            require(&#091;&quot;jquery&quot;,&quot;jquery\/colorpicker\/js\/colorpicker&quot;], function ($) {\n                $(document).ready(function () {\n                    var thisElement = $(&quot;#&#039; . $element-&gt;getHtmlId() . &#039;&quot;);\n                    thisElement.css(&quot;backgroundColor&quot;, &quot;&#039;. $value .&#039;&quot;);\n                    thisElement.ColorPicker({\n                        color: &quot;&#039;. $value .&#039;&quot;,\n                        onChange: function (hsb, hex, rgb) {\n                            thisElement.css(&quot;backgroundColor&quot;, &quot;#&quot; + hex).val(&quot;#&quot; + hex);\n                        }\n                    });\n                });\n            });\n            &lt;\/script&gt;&#039;;\n        return $html;\n    }\n}<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"883\" height=\"418\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png\" alt=\"colorpicker-1\" class=\"wp-image-332063\" title=\"image\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png 883w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1-300x142.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1-250x118.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1-768x364.png 768w\" sizes=\"(max-width: 883px) 100vw, 883px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Hope this will help you.<\/p>\n\n\n\n<p>Thanks \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, We will learn about Add Color Picker in Magento 2 Admin configuration using the system.xml file. Which one admin can select the value from the color picker to show dynamic color. Step-1: Create adminhtml_system_config_edit.xml at app\/code\/Vendor\/ColorPicker\/view\/adminhtml\/layout Step-2: Create system.xml at app\/code\/Vendor\/ColorPicker\/etc\/adminhtml Step-3: Create Colorpicker.php at app\/code\/Vendor\/ColorPicker\/Block Hope this will help you. Thanks <a href=\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":379,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[15489,2070],"class_list":["post-332059","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-color-picker","tag-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Add Color Picker in Magento 2 Admin Configuration - Webkul Blog<\/title>\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\/how-to-add-color-picker-in-magento-2-admin-configuration\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Add Color Picker in Magento 2 Admin Configuration - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In this article, We will learn about Add Color Picker in Magento 2 Admin configuration using the system.xml file. Which one admin can select the value from the color picker to show dynamic color. Step-1: Create adminhtml_system_config_edit.xml at app\/code\/Vendor\/ColorPicker\/view\/adminhtml\/layout Step-2: Create system.xml at app\/code\/Vendor\/ColorPicker\/etc\/adminhtml Step-3: Create Colorpicker.php at app\/code\/Vendor\/ColorPicker\/Block Hope this will help you. Thanks [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/\" \/>\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-05-02T05:12:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-22T09:17:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png\" \/>\n<meta name=\"author\" content=\"Krishna Mohan\" \/>\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=\"Krishna Mohan\" \/>\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\/how-to-add-color-picker-in-magento-2-admin-configuration\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/\"},\"author\":{\"name\":\"Krishna Mohan\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/32da2f954b256b95b4c44ddeacca51b1\"},\"headline\":\"How to Add Color Picker in Magento 2 Admin Configuration\",\"datePublished\":\"2022-05-02T05:12:52+00:00\",\"dateModified\":\"2024-05-22T09:17:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/\"},\"wordCount\":85,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png\",\"keywords\":[\"color picker\",\"Magento2\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/\",\"name\":\"How to Add Color Picker in Magento 2 Admin Configuration - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png\",\"datePublished\":\"2022-05-02T05:12:52+00:00\",\"dateModified\":\"2024-05-22T09:17:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png\",\"width\":883,\"height\":418,\"caption\":\"colorpicker-1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Add Color Picker in Magento 2 Admin Configuration\"}]},{\"@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\/32da2f954b256b95b4c44ddeacca51b1\",\"name\":\"Krishna Mohan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ff4d070d18606ffded6efe51b5703bf4b6a46b26b9e4db5e6ecfdbf023daab4c?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\/ff4d070d18606ffded6efe51b5703bf4b6a46b26b9e4db5e6ecfdbf023daab4c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Krishna Mohan\"},\"description\":\"Krishna, a Software Engineer, specializes in the Magento platform, delivering high-performance eCommerce solutions. Expertise spans custom development, system optimization, and seamless integration, driving innovation and enhancing business operations.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/krishna-mohan439webkul-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Add Color Picker in Magento 2 Admin Configuration - Webkul Blog","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\/how-to-add-color-picker-in-magento-2-admin-configuration\/","og_locale":"en_US","og_type":"article","og_title":"How to Add Color Picker in Magento 2 Admin Configuration - Webkul Blog","og_description":"In this article, We will learn about Add Color Picker in Magento 2 Admin configuration using the system.xml file. Which one admin can select the value from the color picker to show dynamic color. Step-1: Create adminhtml_system_config_edit.xml at app\/code\/Vendor\/ColorPicker\/view\/adminhtml\/layout Step-2: Create system.xml at app\/code\/Vendor\/ColorPicker\/etc\/adminhtml Step-3: Create Colorpicker.php at app\/code\/Vendor\/ColorPicker\/Block Hope this will help you. Thanks [...]","og_url":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-05-02T05:12:52+00:00","article_modified_time":"2024-05-22T09:17:04+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png","type":"","width":"","height":""}],"author":"Krishna Mohan","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Krishna Mohan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/"},"author":{"name":"Krishna Mohan","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/32da2f954b256b95b4c44ddeacca51b1"},"headline":"How to Add Color Picker in Magento 2 Admin Configuration","datePublished":"2022-05-02T05:12:52+00:00","dateModified":"2024-05-22T09:17:04+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/"},"wordCount":85,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png","keywords":["color picker","Magento2"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/","url":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/","name":"How to Add Color Picker in Magento 2 Admin Configuration - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png","datePublished":"2022-05-02T05:12:52+00:00","dateModified":"2024-05-22T09:17:04+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/colorpicker-1.png","width":883,"height":418,"caption":"colorpicker-1"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-add-color-picker-in-magento-2-admin-configuration\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Add Color Picker in Magento 2 Admin Configuration"}]},{"@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\/32da2f954b256b95b4c44ddeacca51b1","name":"Krishna Mohan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ff4d070d18606ffded6efe51b5703bf4b6a46b26b9e4db5e6ecfdbf023daab4c?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\/ff4d070d18606ffded6efe51b5703bf4b6a46b26b9e4db5e6ecfdbf023daab4c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Krishna Mohan"},"description":"Krishna, a Software Engineer, specializes in the Magento platform, delivering high-performance eCommerce solutions. Expertise spans custom development, system optimization, and seamless integration, driving innovation and enhancing business operations.","url":"https:\/\/webkul.com\/blog\/author\/krishna-mohan439webkul-com\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/332059","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\/379"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=332059"}],"version-history":[{"count":16,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/332059\/revisions"}],"predecessor-version":[{"id":442606,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/332059\/revisions\/442606"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=332059"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=332059"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=332059"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}