{"id":53615,"date":"2016-07-06T08:35:07","date_gmt":"2016-07-06T08:35:07","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=53615"},"modified":"2016-07-06T10:44:34","modified_gmt":"2016-07-06T10:44:34","slug":"create-custom-type-field-admin-form-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/","title":{"rendered":"Create Custom Type Field  In Admin Form Magento2"},"content":{"rendered":"<p>Create Custom Type Field In Admin Form Magento2 &#8211; In many cases , when we need to create a custom type field in admin form. which can handle our custom data. so here i am going to explain, how to create a custom type field in admin form.you have to just follow these steps to create custom type field in form.<br \/>\n1 . go to your admin form page<br \/>\nWebkul\\CustomFormField\\Block\\Adminhtml\\Customformfield\\Edit\\Tab\\Form<\/p>\n<pre class=\"brush:php\">namespace Webkul\\CustomFormField\\Block\\Adminhtml\\Customformfield\\Edit\\Tab;\r\n\r\nclass Form extends \\Magento\\Backend\\Block\\Widget\\Form\\Generic \r\nimplements \\Magento\\Backend\\Block\\Widget\\Tab\\TabInterface\r\n{\r\n    \/**\r\n    * @var \\Magento\\Store\\Model\\System\\Store\r\n    *\/\r\n    protected $_systemStore;\r\n    \/**\r\n     * @param \\Magento\\Backend\\Block\\Template\\Context $context\r\n     * @param \\Magento\\Framework\\Data\\FormFactory     $formFactory\r\n     * @param \\Magento\\Store\\Model\\System\\Store       $systemStore\r\n     * @param array                                   $data\r\n     *\/\r\n    public function __construct(\r\n        \\Magento\\Backend\\Block\\Template\\Context $context,\r\n        \\Magento\\Framework\\Data\\FormFactory $formFactory,\r\n        \\Magento\\Store\\Model\\System\\Store $systemStore,\r\n        array $data = []\r\n    ) {\r\n        $this-&gt;_systemStore = $systemStore;\r\n        parent::__construct($context, $formFactory, $data);\r\n    }\r\n\r\n    \/**\r\n    * Prepare form\r\n    *\r\n    * @return $this\r\n    *\/\r\n    protected function _prepareForm()\r\n    {\r\n        $form = $this-&gt;_formFactory-&gt;create();\r\n        $form-&gt;setHtmlIdPrefix('customfield_');\r\n        $fieldset = $form-&gt;addFieldset(\r\n            'base_fieldset',\r\n            ['legend' =&gt; __('Custom Form Field'), 'class' =&gt; 'fieldset-wide']\r\n        );\r\n        $fieldset-&gt;addType(\r\n            'mycustomfield',\r\n            '\\Webkul\\CustomFormField\\Block\\Adminhtml\\Customformfield\\Edit\\Renderer\\CustomRenderer'\r\n        );\r\n        $this-&gt;setForm($form); \r\n        return parent::_prepareForm();\r\n\r\n    }\r\n}<\/pre>\n<p>In above code i have created a custom type field (mycustomfield) and also define a renderer file path for it.Now We have to create renderer file on above mentioned location.<\/p>\n<p>2 . create renderer file<br \/>\nhere i have created renderer file on this location.<br \/>\nWebkul\\CustomFormField\\Block\\Adminhtml\\Customformfield\\Edit\\Renderer\\CustomRenderer<\/p>\n<pre class=\"brush:php\">namespace Webkul\\CustomFormField\\Block\\Adminhtml\\Customformfield\\Edit\\Renderer;\r\n\r\n\/**\r\n* CustomFormField Customformfield field renderer\r\n*\/\r\nclass CustomRenderer extends \\Magento\\Framework\\Data\\Form\\Element\\AbstractElement\r\n{\r\n    \/**\r\n    * Get the after element html.\r\n    *\r\n    * @return mixed\r\n    *\/\r\n    public function getAfterElementHtml()\r\n    {\r\n        \/\/ here you can write your code.\r\n        $customDiv = '&lt;div style=\"width:600px;height:200px;margin:10px 0;border:2px solid #000\" id=\"customdiv\"&gt;&lt;h1 style=\"margin-top: 12%;margin-left:40%;\"&gt;Custom Div&lt;\/h1&gt;&lt;\/div&gt;';\r\n        return $customDiv;\r\n    }\r\n}<\/pre>\n<p>3 . now you can use name of custom type field as a field type for another field.<\/p>\n<pre class=\"brush:php\">* Prepare form\r\n*\r\n* @return $this\r\n*\/\r\nprotected function _prepareForm()\r\n{\r\n    $form = $this-&gt;_formFactory-&gt;;create();\r\n    $form-&gt;setHtmlIdPrefix('customfield_');\r\n    $fieldset = $form-&gt;addFieldset(\r\n        'base_fieldset',\r\n        ['legend' =&gt; __('Custom Form Field'), 'class' =&gt; 'fieldset-wide']\r\n    );\r\n    $fieldset-&gt;addType(\r\n        'mycustomfield',\r\n        '\\Webkul\\CustomFormField\\Block\\Adminhtml\\Customformfield\\Edit\\Renderer\\CustomRenderer'\r\n    );\r\n    $fieldset-&gt;addField(\r\n        'custom div',\r\n        'mycustomfield',\r\n        [\r\n            'name'  =&gt; 'customdiv',\r\n            'label' =&gt; __('Custom Div'),\r\n            'title' =&gt; __('Custom Div'),\r\n          \r\n        ]\r\n    );\r\n    $this-&gt;setForm($form); \r\n    return parent::_prepareForm();\r\n}<\/pre>\n<p>Now your div will be display like that in a admin form<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-53811\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Screenshot_1-1.png\" alt=\"Screenshot_1\" width=\"901\" height=\"372\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Screenshot_1-1.png 901w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Screenshot_1-1-250x103.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Screenshot_1-1-300x124.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Screenshot_1-1-768x317.png 768w\" sizes=\"(max-width: 901px) 100vw, 901px\" loading=\"lazy\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>hope so it will help you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Create Custom Type Field In Admin Form Magento2 &#8211; In many cases , when we need to create a custom type field in admin form. which can handle our custom data. so here i am going to explain, how to create a custom type field in admin form.you have to just follow these steps to <a href=\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":92,"featured_media":46784,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302,1],"tags":[3305,3307,3308,3309,3306],"class_list":["post-53615","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","category-uncategorized","tag-create-custom-type-field-in-admin-form-magento2","tag-custom-type-field-in-form-magento-2","tag-custom-type-form-field-magento-2","tag-use-renderer-in-admin-form-magento-2","tag-use-renderer-in-form-magento-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>create-custom-type-field-admin-form-magento 2<\/title>\n<meta name=\"description\" content=\"Create Custom Type Field In Admin Form Magento2,use renderer in admin form magento 2,custom type form field magento 2,custom type field in form magento 2\" \/>\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\/create-custom-type-field-admin-form-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"create-custom-type-field-admin-form-magento 2\" \/>\n<meta property=\"og:description\" content=\"Create Custom Type Field In Admin Form Magento2,use renderer in admin form magento 2,custom type form field magento 2,custom type field in form magento 2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-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=\"2016-07-06T08:35:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-07-06T10:44:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.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=\"Narendra\" \/>\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=\"Narendra\" \/>\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\/create-custom-type-field-admin-form-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/\"},\"author\":{\"name\":\"Narendra\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a\"},\"headline\":\"Create Custom Type Field In Admin Form Magento2\",\"datePublished\":\"2016-07-06T08:35:07+00:00\",\"dateModified\":\"2016-07-06T10:44:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/\"},\"wordCount\":169,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png\",\"keywords\":[\"Create Custom Type Field In Admin Form Magento2\",\"custom type field in form magento 2\",\"custom type form field magento 2\",\"use renderer in admin form magento 2\",\"use renderer in form magento 2\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/\",\"name\":\"create-custom-type-field-admin-form-magento 2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png\",\"datePublished\":\"2016-07-06T08:35:07+00:00\",\"dateModified\":\"2016-07-06T10:44:34+00:00\",\"description\":\"Create Custom Type Field In Admin Form Magento2,use renderer in admin form magento 2,custom type form field magento 2,custom type field in form magento 2\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create Custom Type Field In Admin Form Magento2\"}]},{\"@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\/3c4771ea9c127b5c6e7d1ff8b58ec70a\",\"name\":\"Narendra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?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\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Narendra\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/narendra962\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"create-custom-type-field-admin-form-magento 2","description":"Create Custom Type Field In Admin Form Magento2,use renderer in admin form magento 2,custom type form field magento 2,custom type field in form magento 2","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\/create-custom-type-field-admin-form-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"create-custom-type-field-admin-form-magento 2","og_description":"Create Custom Type Field In Admin Form Magento2,use renderer in admin form magento 2,custom type form field magento 2,custom type field in form magento 2","og_url":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-07-06T08:35:07+00:00","article_modified_time":"2016-07-06T10:44:34+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png","type":"image\/png"}],"author":"Narendra","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Narendra","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/"},"author":{"name":"Narendra","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a"},"headline":"Create Custom Type Field In Admin Form Magento2","datePublished":"2016-07-06T08:35:07+00:00","dateModified":"2016-07-06T10:44:34+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/"},"wordCount":169,"commentCount":3,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png","keywords":["Create Custom Type Field In Admin Form Magento2","custom type field in form magento 2","custom type form field magento 2","use renderer in admin form magento 2","use renderer in form magento 2"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/","url":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/","name":"create-custom-type-field-admin-form-magento 2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png","datePublished":"2016-07-06T08:35:07+00:00","dateModified":"2016-07-06T10:44:34+00:00","description":"Create Custom Type Field In Admin Form Magento2,use renderer in admin form magento 2,custom type form field magento 2,custom type field in form magento 2","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Magneto-Code-Snippet-5.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-custom-type-field-admin-form-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create Custom Type Field In Admin Form Magento2"}]},{"@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\/3c4771ea9c127b5c6e7d1ff8b58ec70a","name":"Narendra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?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\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Narendra"},"url":"https:\/\/webkul.com\/blog\/author\/narendra962\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/53615","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\/92"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=53615"}],"version-history":[{"count":10,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/53615\/revisions"}],"predecessor-version":[{"id":53812,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/53615\/revisions\/53812"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/46784"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=53615"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=53615"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=53615"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}