{"id":299638,"date":"2022-06-20T12:46:44","date_gmt":"2022-06-20T12:46:44","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=299638"},"modified":"2026-01-30T10:56:40","modified_gmt":"2026-01-30T10:56:40","slug":"magento-2-how-to-configure-and-customize-system-xml","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/","title":{"rendered":"Magento 2 configuration and customization of System.xml"},"content":{"rendered":"\n<p>The Magento 2 system.xml is a configuration file that is used to create fields in the Magento 2 System. You will need system.xml if your module has some settings that the admin needs to set.<\/p>\n\n\n\n<p>Let&#8217;s start to create a new simple configuration. To do so, you need to create a system.xml file as shown below.<\/p>\n\n\n\n<p>We have a Module named Demo Webkul_Demo.<\/p>\n\n\n\n<p>File Path:&nbsp;<code>app\/code\/Webkul\/Demo\/etc\/adminhtml\/system.xml<\/code><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n\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;webkul&quot; translate=&quot;label&quot; sortOrder=&quot;10&quot;&gt;\n            &lt;label&gt;Webkul&lt;\/label&gt;\n        &lt;\/tab&gt;\n        &lt;section id=&quot;demo&quot; translate=&quot;label&quot; type=&quot;text&quot; sortOrder=&quot;300&quot; showInDefault=&quot;1&quot; showInWebsite=&quot;0&quot; showInStore=&quot;0&quot;&gt;\n            &lt;label&gt;Demo&lt;\/label&gt;\n            &lt;tab&gt;webkul&lt;\/tab&gt;\n            &lt;resource&gt;Webkul_Demo::config_demo&lt;\/resource&gt;\n            &lt;group id=&quot;configuration&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;Demo Configuration&lt;\/label&gt;\n                &lt;field id=&quot;demo_text&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;Demo Text&lt;\/label&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<p>You can set default values for your configuration fields by creating a config.xml file in your modules etc directory.<\/p>\n\n\n\n<p>File Path:&nbsp;<code>app\/code\/Webkul\/Demo\/etc\/config.xml<\/code><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n\n&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:module:Magento_Store:etc\/config.xsd&quot;&gt;\n    &lt;default&gt;\n        &lt;demo&gt;\n            &lt;configuration&gt;\n                &lt;demo_text&gt;Example text&lt;\/demo_text&gt;\n            &lt;\/configuration&gt;\n        &lt;\/demo&gt;\n    &lt;\/default&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p>The admin configuration will look like this<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"607\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-1200x607.png\" alt=\"config\" class=\"wp-image-299651\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-1200x607.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-300x152.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-250x126.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-768x388.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-1536x777.png 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config.png 1873w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p><strong>Adding a custom image to the admin configuration group.<\/strong><\/p>\n\n\n\n<p>File Path:&nbsp;<code>app\/code\/Webkul\/Demo\/etc\/adminhtml\/system.xml<\/code><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n\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;webkul&quot; translate=&quot;label&quot; sortOrder=&quot;10&quot;&gt;\n            &lt;label&gt;Webkul&lt;\/label&gt;\n        &lt;\/tab&gt;\n        &lt;section id=&quot;demo&quot; translate=&quot;label&quot; type=&quot;text&quot; sortOrder=&quot;300&quot; showInDefault=&quot;1&quot; showInWebsite=&quot;0&quot; showInStore=&quot;0&quot;&gt;\n            &lt;label&gt;Demo&lt;\/label&gt;\n            &lt;tab&gt;webkul&lt;\/tab&gt;\n            &lt;resource&gt;Webkul_Demo::config_demo&lt;\/resource&gt;\n            &lt;group id=&quot;configuration&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;Demo Configuration&lt;\/label&gt;\n                &lt;field id=&quot;demo_image&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;frontend_model&gt;Webkul\\Demo\\Block\\DemoImage&lt;\/frontend_model&gt;\n                &lt;\/field&gt;\n                &lt;field id=&quot;demo_text&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;Demo Text&lt;\/label&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<p>As you can see in the system.xml file, there is a field added demo_image, with frontend_model. You need to create a block file like this.<\/p>\n\n\n\n<p>File Path:&nbsp;<code>app\/code\/Webkul\/Demo\/Block\/DemoImage.php<\/code><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nnamespace Webkul\\Demo\\Block;\n\nclass DemoImage extends \\Magento\\Config\\Block\\System\\Config\\Form\\Field {\n\n\n    public function __construct(\n        \\Magento\\Framework\\View\\Asset\\Repository $assetRepo,\n        \\Magento\\Backend\\Block\\Template\\Context $context,\n        array $data = &#091;]\n    ) {\n        $this-&gt;_assetRepo = $assetRepo;\n        parent::__construct($context, $data);\n    }\n\n    public function render(\\Magento\\Framework\\Data\\Form\\Element\\AbstractElement $element) {\n        $imageUrl = $this-&gt;_assetRepo-&gt;getUrl(&quot;Webkul_Demo::images\/demoImage.png&quot;);\n        $html = &quot;&lt;img src=&#039;$imageUrl&#039; alt=&#039;Demo Image&#039; width=&#039;1000&#039; height=&#039;100&#039; \/&gt;&quot;;\n        return $html;\n    }\n\n}<\/pre>\n\n\n\n<p>The image you want to use is in app\/code\/Webkul\/Demo\/view\/adminhtml\/web\/images\/demoImage.png in this directory.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"588\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/cofigdemo-1200x588.png\" alt=\"cofigdemo\" class=\"wp-image-299653\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/cofigdemo-1200x588.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/cofigdemo-300x147.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/cofigdemo-250x122.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/cofigdemo-768x376.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/cofigdemo-1536x752.png 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/cofigdemo.png 1875w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>You can also add more HTML, CSS, or js scripts to your block file. By which you can customize even more as you like.<\/p>\n\n\n\n<p>You can also check the link from Magento docs, which gives you more information about the system.xml configuration file, and also check our other blogs.<\/p>\n\n\n\n<p>Reference: <a href=\"https:\/\/devdocs.magento.com\/guides\/v2.4\/config-guide\/prod\/config-reference-systemxml.html\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/devdocs.magento.com\/guides\/v2.4\/config-guide\/prod\/config-reference-systemxml.html<\/a><\/p>\n\n\n\n<p>You can also check our other blogs <a target=\"_blank\" href=\"https:\/\/webkul.com\/blog\/?p=299489\" rel=\"noreferrer noopener\">https:\/\/webkul.com\/blog\/how-to-show-product-stock-remaining-items-in-magento-2\/<\/a><\/p>\n\n\n\n<p>For technical assistance, please get in touch with us via email at\u00a0<a href=\"mailto:support@webkul.com\">support@webkul.com<\/a><\/p>\n\n\n\n<p>Additionally, explore a wide range of solutions to upgrade your store\u2019s functionality by visiting the\u00a0<a href=\"https:\/\/store.webkul.com\/Magento-2.html\">Magento 2 Modules<\/a>\u00a0section.<\/p>\n\n\n\n<p>For expert guidance or custom feature development,\u00a0<a href=\"https:\/\/webkul.com\/hire-magento-developers\/\">hire experienced Magento 2 developers<\/a>\u00a0for your project.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Magento 2 system.xml is a configuration file that is used to create fields in the Magento 2 System. You will need system.xml if your module has some settings that the admin needs to set. Let&#8217;s start to create a new simple configuration. To do so, you need to create a system.xml file as shown <a href=\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":366,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[2070],"class_list":["post-299638","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Magento 2 configuration and customization of System.xml - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Magento 2 How to Create System.xml Configure and customize by adding an image to the configuration group. This will allow you to.\" \/>\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\/magento-2-how-to-configure-and-customize-system-xml\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Magento 2 configuration and customization of System.xml - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Magento 2 How to Create System.xml Configure and customize by adding an image to the configuration group. This will allow you to.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-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=\"2022-06-20T12:46:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-30T10:56:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-1200x607.png\" \/>\n<meta name=\"author\" content=\"Divya Prakash\" \/>\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=\"Divya Prakash\" \/>\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\/magento-2-how-to-configure-and-customize-system-xml\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/\"},\"author\":{\"name\":\"Divya Prakash\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/144f9781b7aee2d1d0fbfde8fb012a98\"},\"headline\":\"Magento 2 configuration and customization of System.xml\",\"datePublished\":\"2022-06-20T12:46:44+00:00\",\"dateModified\":\"2026-01-30T10:56:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/\"},\"wordCount\":290,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-1200x607.png\",\"keywords\":[\"Magento2\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/\",\"url\":\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/\",\"name\":\"Magento 2 configuration and customization of System.xml - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-1200x607.png\",\"datePublished\":\"2022-06-20T12:46:44+00:00\",\"dateModified\":\"2026-01-30T10:56:40+00:00\",\"description\":\"Magento 2 How to Create System.xml Configure and customize by adding an image to the configuration group. This will allow you to.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config.png\",\"width\":1873,\"height\":947,\"caption\":\"config\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Magento 2 configuration and customization of 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\/144f9781b7aee2d1d0fbfde8fb012a98\",\"name\":\"Divya Prakash\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?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\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Divya Prakash\"},\"description\":\"Divya Prakash, a talented Software Engineer, specializes in Magento development, delivering custom eCommerce solutions. Expertise in optimizing performance, integrating advanced features, and enhancing user experience drives innovation and business growth.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/divya-prakash407\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Magento 2 configuration and customization of System.xml - Webkul Blog","description":"Magento 2 How to Create System.xml Configure and customize by adding an image to the configuration group. This will allow you to.","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\/magento-2-how-to-configure-and-customize-system-xml\/","og_locale":"en_US","og_type":"article","og_title":"Magento 2 configuration and customization of System.xml - Webkul Blog","og_description":"Magento 2 How to Create System.xml Configure and customize by adding an image to the configuration group. This will allow you to.","og_url":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-06-20T12:46:44+00:00","article_modified_time":"2026-01-30T10:56:40+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-1200x607.png","type":"","width":"","height":""}],"author":"Divya Prakash","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Divya Prakash","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/"},"author":{"name":"Divya Prakash","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/144f9781b7aee2d1d0fbfde8fb012a98"},"headline":"Magento 2 configuration and customization of System.xml","datePublished":"2022-06-20T12:46:44+00:00","dateModified":"2026-01-30T10:56:40+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/"},"wordCount":290,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-1200x607.png","keywords":["Magento2"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/","url":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/","name":"Magento 2 configuration and customization of System.xml - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config-1200x607.png","datePublished":"2022-06-20T12:46:44+00:00","dateModified":"2026-01-30T10:56:40+00:00","description":"Magento 2 How to Create System.xml Configure and customize by adding an image to the configuration group. This will allow you to.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/config.png","width":1873,"height":947,"caption":"config"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Magento 2 configuration and customization of 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\/144f9781b7aee2d1d0fbfde8fb012a98","name":"Divya Prakash","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?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\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Divya Prakash"},"description":"Divya Prakash, a talented Software Engineer, specializes in Magento development, delivering custom eCommerce solutions. Expertise in optimizing performance, integrating advanced features, and enhancing user experience drives innovation and business growth.","url":"https:\/\/webkul.com\/blog\/author\/divya-prakash407\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/299638","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\/366"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=299638"}],"version-history":[{"count":12,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/299638\/revisions"}],"predecessor-version":[{"id":524373,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/299638\/revisions\/524373"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=299638"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=299638"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=299638"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}