{"id":371685,"date":"2023-03-06T07:45:58","date_gmt":"2023-03-06T07:45:58","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=371685"},"modified":"2023-03-30T06:45:04","modified_gmt":"2023-03-30T06:45:04","slug":"how-to-create-note-field-in-system-xml-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/","title":{"rendered":"How to create note field in system.xml Magento 2"},"content":{"rendered":"\n<p>Here, we will explain how to add note type field in <strong>system.xml<\/strong> file in magento 2. Additionally, we will explain how to show module package version with this note type field.<\/p>\n\n\n\n<p>The&nbsp;<code><strong>system.xml<\/strong><\/code>&nbsp;file allows you to manage the Commerce system configuration. For detailed information about the system.xml file, you can also check the magento blog by clicking on <a href=\"https:\/\/experienceleague.adobe.com\/docs\/commerce-operations\/configuration-guide\/files\/config-reference-systemxml.html\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/experienceleague.adobe.com\/docs\/commerce-operations\/configuration-guide\/files\/config-reference-systemxml.html<\/a><\/p>\n\n\n\n<p>The&nbsp;<code><strong>system.xml<\/strong><\/code>&nbsp;file is located under&nbsp;<code>etc\/adminhtml\/system.xml<\/code>&nbsp;in a given Commerce 2 extension.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Field type reference<\/strong><\/h3>\n\n\n\n<p>A&nbsp;<code>&lt;field&gt;<\/code>-Tag can have one of the several allowed values for the&nbsp;<code>type=\"\"<\/code>&nbsp;attribute:<\/p>\n\n\n\n<p>It is also possible to create a custom field type. This is often done when a special button, with an action, is required. To do this requires two main elements:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Creating a block in the&nbsp;<code>adminhtml<\/code>&nbsp;area<\/li>\n\n\n\n<li>Setting the&nbsp;<code>type=\"\"<\/code>&nbsp;to the path to this block<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><br>Steps to add note type field in system.xml<\/h3>\n\n\n\n<p><strong>Here,<\/strong> we will explain only for the <strong>note<\/strong> type field. Let&#8217;s start the work. Please check our <a href=\"https:\/\/webkul.com\/blog\/magento2-how-to-add-custom-module-configuration-in-configuration-section-using-system-xml\/\" target=\"_blank\" rel=\"noreferrer noopener\">blog<\/a> to know more how to add custom module&nbsp; configuration in Magento2.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>First, create <strong>system.xml<\/strong> file.<br><strong>File Path:<\/strong> app\/code\/Webkul\/Custom\/etc\/adminhtml\/system.xml<\/li>\n<\/ul>\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;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;test&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;Test Configuration&lt;\/label&gt;\n            &lt;tab&gt;webkul&lt;\/tab&gt;\n            &lt;resource&gt;Webkul_Test::config_test&lt;\/resource&gt;\n            &lt;group id=&quot;custom_product_information&quot; translate=&quot;label&quot; type=&quot;text&quot; sortOrder=&quot;700&quot; showInDefault=&quot;1&quot;\n                showInWebsite=&quot;1&quot; showInStore=&quot;1&quot;&gt;\n                &lt;label&gt;Custom module Product Information&lt;\/label&gt;\n                &lt;field id=&quot;author&quot; translate=&quot;label&quot; type=&quot;note&quot; sortOrder=&quot;1&quot; showInDefault=&quot;1&quot; showInWebsite=&quot;1&quot;\n                    showInStore=&quot;1&quot;&gt;\n                    &lt;label&gt;&lt;\/label&gt;\n                    &lt;frontend_model&gt;Webkul\\Custom\\Block\\Adminhtml\\System\\Config\\ModuleInfo&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<ul class=\"wp-block-list\">\n<li>Now, create <strong>ModuleInfo.php<\/strong> block file.<br><strong>File Path:<\/strong> app\/code\/Webkul\/Custom\/Block\/Adminhtml\/System\/Config\/ModuleInfo.php<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Webkul\\Custom\\Block\\Adminhtml\\System\\Config;\n\nuse Magento\\Backend\\Block\\Context;\nuse Magento\\Framework\\Module\\PackageInfoFactory;\n\nclass ModuleInfo extends \\Magento\\Config\\Block\\System\\Config\\Form\\Field\\Heading\n{\n    \/**\n     * @var PackageInfoFactory\n     *\/\n    protected $packageInfoFactory;\n\n    \/**\n     * Constructor\n     *\n     * @param Context $context\n     * @param PackageInfoFactory $packageInfoFactory\n     * @param array $data\n     *\/\n    public function __construct(\n        Context $context,\n        PackageInfoFactory $packageInfoFactory,\n        array $data = &#091;]\n    ) {\n        $this-&gt;packageInfoFactory = $packageInfoFactory;\n        parent::__construct($context, $data);\n    }\n\n    \/**\n     * Render element html\n     *\n     * @param \\Magento\\Framework\\Data\\Form\\Element\\AbstractElement $element\n     * @return string\n     *\/\n    public function render(\\Magento\\Framework\\Data\\Form\\Element\\AbstractElement $element)\n    {\n        $label = $element-&gt;getLabel();\n\n        $info = &quot;&lt;p&gt;You can add any text\/html here.&lt;\/p&gt;&quot;;\n        $label .= $info;\n\n        $packageInfo = $this-&gt;packageInfoFactory-&gt;create();\n        $version = $packageInfo-&gt;getVersion(&#039;Webkul_Custom&#039;);\n        $label .= &#039;&lt;p&gt;&#039;.__(&#039;Version: %1&#039;, $version).&#039;&lt;\/p&gt;&#039;;\n\n        return sprintf(\n            &#039;&lt;tr class=&quot;system-fieldset-sub-head&quot; id=&quot;row_%s&quot;&gt;&lt;td colspan=&quot;5&quot;&gt;&lt;h4 id=&quot;%s&quot;&gt;%s&lt;\/h4&gt;&lt;\/td&gt;&lt;\/tr&gt;&#039;,\n            $element-&gt;getHtmlId(),\n            $element-&gt;getHtmlId(),\n            $label\n        );\n    }\n}<\/pre>\n\n\n\n<p>Now, It will be shown in the System configurations as below:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"584\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10-1200x584.png\" alt=\"image-10\" class=\"wp-image-371691\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10-1200x584.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10-300x146.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10-250x122.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10-768x373.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10.png 1273w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><br>Related blogs<\/h2>\n\n\n\n<p>You can also check our other wonderful blogs related to the system configurations in magento2 with the following links:<br>1. How to create a checkbox field in system configuration Magento 2: <a href=\"https:\/\/webkul.com\/blog\/create-checkbox-field-system-configuration-magento-2\/\" target=\"_blank\" rel=\"noreferrer noopener\">Click here<\/a><br>2. How to create a Button in the Configuration Section in Magento 2: <a href=\"https:\/\/webkul.com\/blog\/add-button-magento2\/\" target=\"_blank\" rel=\"noreferrer noopener\">Click here<\/a><br>3. How to Create Radio button in Admin System Configuration in Magento 2: <a href=\"https:\/\/webkul.com\/blog\/magento-2-how-to-create-radio-button-in-admin-system-configuration\/\" target=\"_blank\" rel=\"noreferrer noopener\">Click here<\/a><br>4. Create a dependent field in admin configuration in Magento 2: <a href=\"https:\/\/webkul.com\/blog\/create-dependant-field-admin-configuration-magento-2\/\" target=\"_blank\" rel=\"noreferrer noopener\">Click here<\/a><br>Thanks,<\/p>\n\n\n\n<p>Moreover, If you are looking to create a custom e-commerce website, it is a great idea to<a href=\"https:\/\/webkul.com\/hire-magento-developers\/\">&nbsp;hire Magento developers&nbsp;<\/a>who can help you build a powerful and scalable online store.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here, we will explain how to add note type field in system.xml file in magento 2. Additionally, we will explain how to show module package version with this note type field. The&nbsp;system.xml&nbsp;file allows you to manage the Commerce system configuration. For detailed information about the system.xml file, you can also check the magento blog by <a href=\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":482,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[12967,2460,2070],"class_list":["post-371685","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-adobe-commerce","tag-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>How to create note field in system.xml Magento 2 - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Here, we will explain how to add note type field in system.xml file in magento 2. Additionally, we will explain how to show module package version in this note type field.\" \/>\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-create-note-field-in-system-xml-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create note field in system.xml Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Here, we will explain how to add note type field in system.xml file in magento 2. Additionally, we will explain how to show module package version in this note type field.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/\" \/>\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-03-06T07:45:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-30T06:45:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10-1200x584.png\" \/>\n<meta name=\"author\" content=\"Akash Panwar\" \/>\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=\"Akash Panwar\" \/>\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\/how-to-create-note-field-in-system-xml-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/\"},\"author\":{\"name\":\"Akash Panwar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/870aad64c7c0cf48e76bc72c1b63b5fb\"},\"headline\":\"How to create note field in system.xml Magento 2\",\"datePublished\":\"2023-03-06T07:45:58+00:00\",\"dateModified\":\"2023-03-30T06:45:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/\"},\"wordCount\":348,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10-1200x584.png\",\"keywords\":[\"Adobe Commerce\",\"Magento 2\",\"Magento2\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/\",\"name\":\"How to create note field in system.xml Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10-1200x584.png\",\"datePublished\":\"2023-03-06T07:45:58+00:00\",\"dateModified\":\"2023-03-30T06:45:04+00:00\",\"description\":\"Here, we will explain how to add note type field in system.xml file in magento 2. Additionally, we will explain how to show module package version in this note type field.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10.png\",\"width\":1273,\"height\":619,\"caption\":\"image-10\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create note field in system.xml Magento 2\"}]},{\"@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\/870aad64c7c0cf48e76bc72c1b63b5fb\",\"name\":\"Akash Panwar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9ac862666945131960c62540a7865b0a23d5c0a3562d00e956c1d982d102f5fd?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\/9ac862666945131960c62540a7865b0a23d5c0a3562d00e956c1d982d102f5fd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Akash Panwar\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/akash-panwar671\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create note field in system.xml Magento 2 - Webkul Blog","description":"Here, we will explain how to add note type field in system.xml file in magento 2. Additionally, we will explain how to show module package version in this note type field.","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-create-note-field-in-system-xml-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"How to create note field in system.xml Magento 2 - Webkul Blog","og_description":"Here, we will explain how to add note type field in system.xml file in magento 2. Additionally, we will explain how to show module package version in this note type field.","og_url":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-03-06T07:45:58+00:00","article_modified_time":"2023-03-30T06:45:04+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10-1200x584.png","type":"","width":"","height":""}],"author":"Akash Panwar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Akash Panwar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/"},"author":{"name":"Akash Panwar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/870aad64c7c0cf48e76bc72c1b63b5fb"},"headline":"How to create note field in system.xml Magento 2","datePublished":"2023-03-06T07:45:58+00:00","dateModified":"2023-03-30T06:45:04+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/"},"wordCount":348,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10-1200x584.png","keywords":["Adobe Commerce","Magento 2","Magento2"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/","url":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/","name":"How to create note field in system.xml Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10-1200x584.png","datePublished":"2023-03-06T07:45:58+00:00","dateModified":"2023-03-30T06:45:04+00:00","description":"Here, we will explain how to add note type field in system.xml file in magento 2. Additionally, we will explain how to show module package version in this note type field.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/image-10.png","width":1273,"height":619,"caption":"image-10"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-create-note-field-in-system-xml-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create note field in system.xml Magento 2"}]},{"@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\/870aad64c7c0cf48e76bc72c1b63b5fb","name":"Akash Panwar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9ac862666945131960c62540a7865b0a23d5c0a3562d00e956c1d982d102f5fd?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\/9ac862666945131960c62540a7865b0a23d5c0a3562d00e956c1d982d102f5fd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Akash Panwar"},"url":"https:\/\/webkul.com\/blog\/author\/akash-panwar671\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/371685","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\/482"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=371685"}],"version-history":[{"count":4,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/371685\/revisions"}],"predecessor-version":[{"id":374367,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/371685\/revisions\/374367"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=371685"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=371685"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=371685"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}