{"id":134690,"date":"2018-07-21T13:35:13","date_gmt":"2018-07-21T13:35:13","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=134690"},"modified":"2024-02-26T13:29:38","modified_gmt":"2024-02-26T13:29:38","slug":"hide-product-tab-for-specific-product-type-in-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/","title":{"rendered":"Hide Product Tab For Specific Product Type in Magento 2"},"content":{"rendered":"\n<p>Here we will learn &#8220;How to Hide a Product Tab for a specific type of product on product edit form&#8221;.<\/p>\n\n\n\n<p>First create &#8216;di.xml&#8217; in location Webkul\/HideProductTab\/etc\/adminhtml\/<\/p>\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:framework:ObjectManager\/etc\/config.xsd&quot;&gt;\n    &lt;virtualType name=&quot;Magento\\Catalog\\Ui\\DataProvider\\Product\\Form\\Modifier\\Pool&quot;&gt;\n        &lt;arguments&gt;\n            &lt;argument name=&quot;modifiers&quot; xsi:type=&quot;array&quot;&gt;\n                &lt;item name=&quot;advancedCustomOptions&quot; xsi:type=&quot;array&quot;&gt;\n                    &lt;item name=&quot;class&quot; xsi:type=&quot;string&quot;&gt;Webkul\\HideProductTab\\Ui\\DataProvider\\ProductForm&lt;\/item&gt;\n                    &lt;item name=&quot;sortOrder&quot; xsi:type=&quot;number&quot;&gt;20&lt;\/item&gt;\n                &lt;\/item&gt;\n            &lt;\/argument&gt;\n        &lt;\/arguments&gt;\n    &lt;\/virtualType&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p>Then create &#8216;ProductForm.php&#8217; in location Webkul\/HideProductTab\/Ui\/DataProvider\/<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nnamespace Webkul\\HideProductTab\\Ui\\DataProvider;\n \nuse Magento\\Catalog\\Ui\\DataProvider\\Product\\Form\\Modifier\\AbstractModifier;\nuse Magento\\Catalog\\Model\\Locator\\LocatorInterface;\nuse Magento\\Framework\\App\\RequestInterface;\nuse Magento\\Framework\\View\\LayoutFactory;\n \nclass ProductForm extends AbstractModifier\n{\n    \/**\n     * @var LocatorInterface\n     *\/\n    protected $locator;\n \n    \/**\n     * @var RequestInterface\n     *\/\n    protected $request;\n \n    \/**\n     * @var LayoutFactory\n     *\/\n    private $layoutFactory;\n \n    public function __construct(\n        LocatorInterface $locator,\n        RequestInterface $request,\n        LayoutFactory $layoutFactory\n    ) {\n        $this-&gt;locator = $locator;\n        $this-&gt;request = $request;\n        $this-&gt;layoutFactory = $layoutFactory;\n    }\n \n    public function modifyMeta(array $meta)\n    {\n        if ($this-&gt;getProductType() == &quot;simple&quot;) {\n            $meta&#091;&quot;custom_options&quot;] = &#091;\n                &quot;arguments&quot; =&gt; &#091;\n                    &quot;data&quot; =&gt; &#091;\n                        &quot;config&quot; =&gt; &#091;\n                            &quot;componentType&quot; =&gt; &quot;fieldset&quot;,\n                            &quot;collapsible&quot; =&gt; false,\n                            &quot;sortOrder&quot; =&gt; 1,\n                            &#039;opened&#039; =&gt; false,\n                            &#039;canShow&#039; =&gt; false,\n                            &#039;visible&#039; =&gt; false\n                        ]\n                    ]\n                ]\n            ];\n        }\n        return $meta;\n    }\n \n    \/**\n     * {@inheritdoc}\n     *\/\n    public function modifyData(array $data)\n    {\n        return $data;\n    }\n \n    \/**\n     * Get product type\n     *\n     * @return null|string\n     *\/\n    private function getProductType()\n    {\n        return (string)$this-&gt;request-&gt;getParam(&#039;type&#039;, $this-&gt;locator-&gt;getProduct()-&gt;getTypeId());\n    }\n}<\/pre>\n\n\n\n<p>Here we have hidden the Custom Options tab for Simple type product.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Before removing the tab<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1089\" height=\"622\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png\" alt=\"sanjay_before_remove_tab\" class=\"wp-image-424498\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png 1089w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab-300x171.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab-250x143.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab-768x439.png 768w\" sizes=\"(max-width: 1089px) 100vw, 1089px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>After removing the tab<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1084\" height=\"621\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_after_remove_tab.png\" alt=\"sanjay_after_remove_tab\" class=\"wp-image-424499\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_after_remove_tab.png 1084w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_after_remove_tab-300x172.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_after_remove_tab-250x143.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_after_remove_tab-768x440.png 768w\" sizes=\"(max-width: 1084px) 100vw, 1084px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>If you want to add a tab then checkout\u00a0<a href=\"https:\/\/webkul.com\/blog\/add-product-tab-specific-product-type-custom-module-magento-2\/\">Add Product Tab For Specific Product Type In Your Custom Module Magento 2<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here we will learn &#8220;How to Hide a Product Tab for a specific type of product on product edit form&#8221;. First create &#8216;di.xml&#8217; in location Webkul\/HideProductTab\/etc\/adminhtml\/ Then create &#8216;ProductForm.php&#8217; in location Webkul\/HideProductTab\/Ui\/DataProvider\/ Here we have hidden the Custom Options tab for Simple type product. Before removing the tab After removing the tab If you want <a href=\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":201,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[7163,7162,7164],"class_list":["post-134690","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-hide-product-tab-for-specific-product","tag-hide-product-tab-programatically","tag-modify-product-tab"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Hide Product Tab For Specific Product Type 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\/hide-product-tab-for-specific-product-type-in-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hide Product Tab For Specific Product Type in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Here we will learn &#8220;How to Hide a Product Tab for a specific type of product on product edit form&#8221;. First create &#8216;di.xml&#8217; in location Webkul\/HideProductTab\/etc\/adminhtml\/ Then create &#8216;ProductForm.php&#8217; in location Webkul\/HideProductTab\/Ui\/DataProvider\/ Here we have hidden the Custom Options tab for Simple type product. Before removing the tab After removing the tab If you want [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-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=\"2018-07-21T13:35:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-26T13:29:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png\" \/>\n<meta name=\"author\" content=\"Sanjay Chouhan\" \/>\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=\"Sanjay Chouhan\" \/>\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\/hide-product-tab-for-specific-product-type-in-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/\"},\"author\":{\"name\":\"Sanjay Chouhan\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/645580979f637b0e355deea21bd07462\"},\"headline\":\"Hide Product Tab For Specific Product Type in Magento 2\",\"datePublished\":\"2018-07-21T13:35:13+00:00\",\"dateModified\":\"2024-02-26T13:29:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/\"},\"wordCount\":90,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png\",\"keywords\":[\"hide product tab for specific product\",\"hide product tab programatically\",\"modify product tab\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/\",\"name\":\"Hide Product Tab For Specific Product Type in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png\",\"datePublished\":\"2018-07-21T13:35:13+00:00\",\"dateModified\":\"2024-02-26T13:29:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png\",\"width\":1089,\"height\":622,\"caption\":\"sanjay_before_remove_tab\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hide Product Tab For Specific Product Type 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\/645580979f637b0e355deea21bd07462\",\"name\":\"Sanjay Chouhan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?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\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Sanjay Chouhan\"},\"sameAs\":[\"https:\/\/www.instagram.com\/sanjaychouhansc\/\",\"https:\/\/in.linkedin.com\/in\/scchouhansanjay\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/sanjay-chouhan180\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Hide Product Tab For Specific Product Type 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\/hide-product-tab-for-specific-product-type-in-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"Hide Product Tab For Specific Product Type in Magento 2 - Webkul Blog","og_description":"Here we will learn &#8220;How to Hide a Product Tab for a specific type of product on product edit form&#8221;. First create &#8216;di.xml&#8217; in location Webkul\/HideProductTab\/etc\/adminhtml\/ Then create &#8216;ProductForm.php&#8217; in location Webkul\/HideProductTab\/Ui\/DataProvider\/ Here we have hidden the Custom Options tab for Simple type product. Before removing the tab After removing the tab If you want [...]","og_url":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-07-21T13:35:13+00:00","article_modified_time":"2024-02-26T13:29:38+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png","type":"","width":"","height":""}],"author":"Sanjay Chouhan","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Sanjay Chouhan","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/"},"author":{"name":"Sanjay Chouhan","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/645580979f637b0e355deea21bd07462"},"headline":"Hide Product Tab For Specific Product Type in Magento 2","datePublished":"2018-07-21T13:35:13+00:00","dateModified":"2024-02-26T13:29:38+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/"},"wordCount":90,"commentCount":2,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png","keywords":["hide product tab for specific product","hide product tab programatically","modify product tab"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/","url":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/","name":"Hide Product Tab For Specific Product Type in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png","datePublished":"2018-07-21T13:35:13+00:00","dateModified":"2024-02-26T13:29:38+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/sanjay_before_remove_tab.png","width":1089,"height":622,"caption":"sanjay_before_remove_tab"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/hide-product-tab-for-specific-product-type-in-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Hide Product Tab For Specific Product Type 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\/645580979f637b0e355deea21bd07462","name":"Sanjay Chouhan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?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\/cd6ee19f99bd1fcafef819135529c952d7c875d06fedd9fd4c4eb0996bafc1bd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Sanjay Chouhan"},"sameAs":["https:\/\/www.instagram.com\/sanjaychouhansc\/","https:\/\/in.linkedin.com\/in\/scchouhansanjay"],"url":"https:\/\/webkul.com\/blog\/author\/sanjay-chouhan180\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/134690","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\/201"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=134690"}],"version-history":[{"count":8,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/134690\/revisions"}],"predecessor-version":[{"id":424500,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/134690\/revisions\/424500"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=134690"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=134690"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=134690"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}