{"id":50885,"date":"2016-06-02T16:41:47","date_gmt":"2016-06-02T16:41:47","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=50885"},"modified":"2024-02-20T10:17:55","modified_gmt":"2024-02-20T10:17:55","slug":"add-custom-form-elements-product-addedit-form-specific-group-section-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/","title":{"rendered":"Add custom form elements in product add\/edit form in specific group section in Magento 2"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Here we&#8217;ll learn how to add custom form elements in product add\/edit form in specific group section in Magento 2<\/h2>\n\n\n\n<p>Using magento2 &#8216;adminhtml_catalog_product_edit_prepare_form&#8217;&nbsp; observer we can add custom form elements in product add\/edit form.<\/p>\n\n\n\n<p>1# First we&#8217;ll define observer (event) in event.xml file at folder app\/code\/NameSpace\/ModuleName\/etc\/adminhtml<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;!--\n\/**\n * Webkul Admin events\n *\n * @category    Webkul\n * @author      Webkul Software Private Limited\n *\n *\/\n--&gt;\n&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:Event\/etc\/events.xsd&quot;&gt;\n    &lt;event name=&quot;adminhtml_catalog_product_edit_prepare_form&quot;&gt;\n        &lt;observer name=&quot;custom_product_fields&quot; instance=&quot;NameSpace\\ModuleName\\Observer\\CatalogProductEditPrepareForm&quot; \/&gt;\n        &lt;!-- CatalogProductEditPrepareForm is name of class in which we&#039;ll add custom fields in form--&gt;\n    &lt;\/event&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p>2# Now create CatalogProductEditPrepareForm.php class file in app\/code\/NameSpace\/ModuleName\/Observer<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\/**\n * @category    Webkul\n * @author      Webkul Software Pvt. Ltd.\n *\/\nnamespace NameSpace\\ModuleName\\Observer;\n\nuse Magento\\Framework\\Event\\ObserverInterface;\n\nclass CatalogProductEditPrepareForm implements ObserverInterface\n{\n\t\/**\n     * @var \\Magento\\Framework\\Registry\n    *\/\n    protected $_coreRegistry;\n\n    \/**\n     * @param \\Magento\\Framework\\Registry  $coreRegistry\n     *\/\n    public function __construct(\n        \\Magento\\Framework\\Registry  $coreRegistry\n    ) {\n        $this-&gt;_coreRegistry = $coreRegistry;\n    }\n\n    \/**\n     * product from prepare event handler.\n     * @param \\Magento\\Framework\\Event\\Observer $observer\n     * @return $this\n     *\/\n    public function execute(\\Magento\\Framework\\Event\\Observer $observer)\n    {  \n        $form = $observer-&gt;getForm(); \/\/ $observer contain form object\n\n        \/\/ get your group element in which you want to add custom filed\n        $fieldset = $form-&gt;getElement(&#039;group-fields-id-in-which-you-want-to-add-elements&#039;); \n\n        if ($fieldset) {\n\n            \/\/ get current product if you want to use any data from product\n            $product = $this-&gt;_coreRegistry-&gt;registry(&#039;product&#039;);\n            $fieldset -&gt;addField(\n                &#039;custom-field-1&#039;,\n                &#039;text&#039;,\n                &#091;\n                    &#039;name&#039; =&gt; &#039;custom-field-1&#039;,\n                    &#039;label&#039; =&gt; __(&#039;Custom Field 1&#039;),\n                    &#039;id&#039; =&gt; &#039;custom-field-1&#039;\n                ]\n            );\n\n            $fieldset -&gt;addField(\n                &#039;custom-field-2&#039;,\n                &#039;text&#039;,\n                &#091;\n                    &#039;name&#039; =&gt; &#039;custom-field-2&#039;,\n                    &#039;label&#039; =&gt; __(&#039;Custom Field 2&#039;),\n                    &#039;id&#039; =&gt; &#039;custom-field-2&#039;\n                ]\n            );\n\n            \/\/ You can set any data in these elements for display default value\n            $form-&gt;addValues(\n                &#091;\n                    &#039;custom-field-1&#039; =&gt; &#039;data according to you&#039;, \/\/ ex. $product-&gt;getName()\n                    &#039;custom-field-2&#039; =&gt; &#039;data according to you&#039;\n                ]\n            );\n        }\n        return $this;\n    }\n}<\/pre>\n\n\n\n<p>Note:- its use for display data on form and you can get data on submit but Data will not save with product &#8230;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here we&#8217;ll learn how to add custom form elements in product add\/edit form in specific group section in Magento 2 Using magento2 &#8216;adminhtml_catalog_product_edit_prepare_form&#8217;&nbsp; observer we can add custom form elements in product add\/edit form. 1# First we&#8217;ll define observer (event) in event.xml file at folder app\/code\/NameSpace\/ModuleName\/etc\/adminhtml 2# Now create CatalogProductEditPrepareForm.php class file in app\/code\/NameSpace\/ModuleName\/Observer Note:- <a href=\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":4,"featured_media":50170,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,302],"tags":[3196,2056,2070,388],"class_list":["post-50885","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento","category-magento2","tag-from-element","tag-magento","tag-magento2","tag-observer"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Add custom form elements in product add\/edit form in specific group section in Magento 2 - 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\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Add custom form elements in product add\/edit form in specific group section in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Here we&#8217;ll learn how to add custom form elements in product add\/edit form in specific group section in Magento 2 Using magento2 &#8216;adminhtml_catalog_product_edit_prepare_form&#8217;&nbsp; observer we can add custom form elements in product add\/edit form. 1# First we&#8217;ll define observer (event) in event.xml file at folder app\/code\/NameSpace\/ModuleName\/etc\/adminhtml 2# Now create CatalogProductEditPrepareForm.php class file in app\/code\/NameSpace\/ModuleName\/Observer Note:- [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/\" \/>\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-06-02T16:41:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-20T10:17:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Abhishek Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abhishek Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0\"},\"headline\":\"Add custom form elements in product add\/edit form in specific group section in Magento 2\",\"datePublished\":\"2016-06-02T16:41:47+00:00\",\"dateModified\":\"2024-02-20T10:17:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/\"},\"wordCount\":108,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-3.png\",\"keywords\":[\"From element\",\"magento\",\"Magento2\",\"OBSERVER\"],\"articleSection\":[\"magento\",\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/\",\"name\":\"Add custom form elements in product add\/edit form in specific group section in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-3.png\",\"datePublished\":\"2016-06-02T16:41:47+00:00\",\"dateModified\":\"2024-02-20T10:17:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-3.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-3.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Add custom form elements in product add\/edit form in specific group section in 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\/573e459f54796eb4195511990de4bfd0\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.\",\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/abhishek\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Add custom form elements in product add\/edit form in specific group section in Magento 2 - 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\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/","og_locale":"en_US","og_type":"article","og_title":"Add custom form elements in product add\/edit form in specific group section in Magento 2 - Webkul Blog","og_description":"Here we&#8217;ll learn how to add custom form elements in product add\/edit form in specific group section in Magento 2 Using magento2 &#8216;adminhtml_catalog_product_edit_prepare_form&#8217;&nbsp; observer we can add custom form elements in product add\/edit form. 1# First we&#8217;ll define observer (event) in event.xml file at folder app\/code\/NameSpace\/ModuleName\/etc\/adminhtml 2# Now create CatalogProductEditPrepareForm.php class file in app\/code\/NameSpace\/ModuleName\/Observer Note:- [...]","og_url":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-06-02T16:41:47+00:00","article_modified_time":"2024-02-20T10:17:55+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-3.png","type":"image\/png"}],"author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/573e459f54796eb4195511990de4bfd0"},"headline":"Add custom form elements in product add\/edit form in specific group section in Magento 2","datePublished":"2016-06-02T16:41:47+00:00","dateModified":"2024-02-20T10:17:55+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/"},"wordCount":108,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-3.png","keywords":["From element","magento","Magento2","OBSERVER"],"articleSection":["magento","Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/","url":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/","name":"Add custom form elements in product add\/edit form in specific group section in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-3.png","datePublished":"2016-06-02T16:41:47+00:00","dateModified":"2024-02-20T10:17:55+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-3.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/05\/Magneto-Code-Snippet-3.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/add-custom-form-elements-product-addedit-form-specific-group-section-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Add custom form elements in product add\/edit form in specific group section in 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\/573e459f54796eb4195511990de4bfd0","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d4ac7e0e671bf743359d7e3f140c262d1b16d71106f0a1aeaecca327a2805ae4?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Abhishek Singh"},"description":"Adobe Commerce certified Magento developer with over 12 years of experience at Webkul. Passionate about scalable Magento 2-based webshops, AI, and multi-channel integrations, Abhishek consistently delivers innovative and efficient e-commerce solutions that propel businesses forward.","sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/abhishek\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/50885","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=50885"}],"version-history":[{"count":5,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/50885\/revisions"}],"predecessor-version":[{"id":454318,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/50885\/revisions\/454318"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/50170"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=50885"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=50885"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=50885"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}