{"id":391236,"date":"2023-07-14T14:52:32","date_gmt":"2023-07-14T14:52:32","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=391236"},"modified":"2024-04-18T13:15:43","modified_gmt":"2024-04-18T13:15:43","slug":"customize-layout-for-a-specific-product-in-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/","title":{"rendered":"How to Customize layout for a specific product in Magento 2"},"content":{"rendered":"\n<p>We will learn how to customize product page layout for a specific product in Magento 2. First, we will learn some things about <a href=\"https:\/\/webkul.com\/blog\/magento-development-05-layout-and-templates\/\" target=\"_blank\" rel=\"noreferrer noopener\">layout in Magento 2<\/a>.<\/p>\n\n\n\n<p>In Magento, the basic components of page design are layouts, containers, and blocks. <\/p>\n\n\n\n<p>A\u00a0<em>layout<\/em>\u00a0represents the structure of a web page (1).<\/p>\n\n\n\n<p><em>Containers<\/em>\u00a0represent the placeholders within that web page structure (2). <\/p>\n\n\n\n<p>And\u00a0<em>blocks<\/em>\u00a0represent the UI controls or components within the container placeholders (3).<\/p>\n\n\n\n<p>(1)\u00a0<em>Layouts<\/em>\u00a0provide the structures for web pages using an XML file that identifies all the containers and blocks composing the page. <\/p>\n\n\n\n<p>The details of layout XML files are described later in this section.<\/p>\n\n\n\n<p>(2)\u00a0<em>Containers<\/em>\u00a0assign content structure to a page using container tags within a layout XML file. <\/p>\n\n\n\n<p>A container has no additional content except the content of included elements. Examples of containers include the header, left column, main column, and footer.<\/p>\n\n\n\n<p>(3)\u00a0<em>Blocks<\/em>\u00a0render the UI elements on a page using block tags within a layout XML file. Blocks use templates to generate the\u00a0HTML\u00a0to insert into its parent structural block. <\/p>\n\n\n\n<p>Examples of blocks include a\u00a0category\u00a0list, a <a href=\"https:\/\/webkul.com\/blog\/update-mini-cart-magento2\/\" target=\"_blank\" rel=\"noreferrer noopener\">mini cart<\/a>, product tags, and product listing.<\/p>\n\n\n\n<p>For information about product page layouts, you can click <a href=\"https:\/\/devdocs.magento.com\/guides\/v2.3\/frontend-dev-guide\/layouts\/product-layouts.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">here<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Methods to customize layout for a specific product<\/h2>\n\n\n\n<p>There are two ways for customizing your product page\u2019s layout for a specific product.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Method 1: Create a custom layout update<\/h4>\n\n\n\n<p>Custom layout update for product pages is now converted into a selector<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/www.simicart.com\/blog\/wp-content\/uploads\/page-layout-design.png\" alt=\"design page layout\" class=\"wp-image-23627\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>To apply custom layout updates for your product pages, you\u2019ll need to create an .XML file in a specified folder (<code>app\/design\/frontend\/&lt;Vendor&gt;\/&lt;Theme&gt;\/Magento_Catalog\/layout\/<\/code>). The layout update from that .XML file will then available under&nbsp;<strong>Custom Layout Update<\/strong>&nbsp;as a selectable option.<\/p>\n\n\n\n<p>Your custom layout update file names will need to adhere to the following rule:<\/p>\n\n\n\n<p><code>catalog_product_view_selectable_&lt;Product SKU&gt;_&lt;Name for Layout Update&gt;.xml<\/code><\/p>\n\n\n\n<p>where:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>&lt;Product_SKU&gt;<\/code>: is the SKU of the product that you want to apply custom layout update<\/li>\n\n\n\n<li><code>&lt;Name for Layout Update&gt;<\/code>: is the name of this layout which will be shown in the&nbsp;<strong>Custom Layout Update<\/strong>&nbsp;selector<\/li>\n<\/ul>\n\n\n\n<p>For example, if we want to apply a new custom layout update for SKU: TEST55. We\u2019ll need to create a custom layout file named&nbsp;<code>catalog_product_view_selectable_ TEST55_test.xml<\/code>&nbsp;in&nbsp;<code>\/theme_dir\/Magento_Catalog\/layout\/<\/code>, with the content like below:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;page layout=&quot;1column&quot; xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:View\/Layout\/etc\/page_configuration.xsd&quot;&gt;\n    &lt;body&gt;\n        &lt;referenceContainer name=&quot;page.wrapper&quot;&gt;\n             &lt;referenceBlock name=&quot;breadcrumbs&quot; remove=&quot;true&quot;\/&gt;\n         &lt;\/referenceContainer&gt;\n    &lt;\/body&gt;\n&lt;\/page&gt;<\/pre>\n\n\n\n<p> It will remove the breadcrumbs&nbsp;from Product SKU TEST55\u2019s product page.<\/p>\n\n\n\n<p>Next, in&nbsp;<strong>Catalog &gt; Products<\/strong>, choose the product with SKU TEST55. You should now be able to see a custom layout update named&nbsp;test.<\/p>\n\n\n\n<p>Choose this new custom layout update and&nbsp;<strong>Save<\/strong>&nbsp;the changes.&nbsp;<\/p>\n\n\n\n<p>Now clear your cache using:<\/p>\n\n\n\n<p>php bin\/magento cache:flush<\/p>\n\n\n\n<p>And the changes should now be reflected on your frontend.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Method 2<\/strong>: Overriding layout<\/h4>\n\n\n\n<p>You can also override the layout using:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Product ID<\/li>\n\n\n\n<li>Product SKU<\/li>\n\n\n\n<li>Product TYPE<\/li>\n<\/ul>\n\n\n\n<p>For example, if you want to customize the product page layout for a product with ID 25, the layout file\u2019s name will need to adhere to the following format:<\/p>\n\n\n\n<p><code>catalog_product_view_id_number.xml<\/code><\/p>\n\n\n\n<p>e.g.,&nbsp;<code>catalog_product_view_id_<\/code>25<\/p>\n\n\n\n<p>And the file will need to be in the following part:<\/p>\n\n\n\n<p><code>app\/design\/frontend\/&lt;Vendor&gt;\/&lt;Theme&gt;\/Magento_Catalog\/layout\/<\/code><\/p>\n\n\n\n<p>Clear the cache following the system\u2019s message. If not, you can go to the frontend to check out the new customized page layout for the specific product.&nbsp;<\/p>\n\n\n\n<p>For product type, you can follow the same steps and change the file\u2019s name accordingly.&nbsp;<\/p>\n\n\n\n<p>For example, use&nbsp;<code>catalog_product_view_type_bundle.xml<\/code>&nbsp;to apply the new page layout for bundled products.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Related blogs:<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https:\/\/webkul.com\/blog\/magento-development-05-layout-and-templates\/\" target=\"_blank\" rel=\"noreferrer noopener\">Magento 2 Development 05: Layout and Templates<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/webkul.com\/blog\/how-to-create-custom-layout-page\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to create custom layout page in magento2<\/a><\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>We will learn how to customize product page layout for a specific product in Magento 2. First, we will learn some things about layout in Magento 2. In Magento, the basic components of page design are layouts, containers, and blocks. A\u00a0layout\u00a0represents the structure of a web page (1). Containers\u00a0represent the placeholders within that web page <a href=\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-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-391236","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 Customize layout for a specific product in Magento 2 - Webkul Blog<\/title>\n<meta name=\"description\" content=\"We will learn how to customize product page layout for a specific product in Magento 2. There are two ways for this.\" \/>\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\/customize-layout-for-a-specific-product-in-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 Customize layout for a specific product in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"We will learn how to customize product page layout for a specific product in Magento 2. There are two ways for this.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-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=\"2023-07-14T14:52:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-18T13:15:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.simicart.com\/blog\/wp-content\/uploads\/page-layout-design.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\/customize-layout-for-a-specific-product-in-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/\"},\"author\":{\"name\":\"Akash Panwar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/870aad64c7c0cf48e76bc72c1b63b5fb\"},\"headline\":\"How to Customize layout for a specific product in Magento 2\",\"datePublished\":\"2023-07-14T14:52:32+00:00\",\"dateModified\":\"2024-04-18T13:15:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/\"},\"wordCount\":575,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.simicart.com\/blog\/wp-content\/uploads\/page-layout-design.png\",\"keywords\":[\"Adobe Commerce\",\"Magento 2\",\"Magento2\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/\",\"name\":\"How to Customize layout for a specific product in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.simicart.com\/blog\/wp-content\/uploads\/page-layout-design.png\",\"datePublished\":\"2023-07-14T14:52:32+00:00\",\"dateModified\":\"2024-04-18T13:15:43+00:00\",\"description\":\"We will learn how to customize product page layout for a specific product in Magento 2. There are two ways for this.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#primaryimage\",\"url\":\"https:\/\/www.simicart.com\/blog\/wp-content\/uploads\/page-layout-design.png\",\"contentUrl\":\"https:\/\/www.simicart.com\/blog\/wp-content\/uploads\/page-layout-design.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Customize layout for a specific product 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\/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 Customize layout for a specific product in Magento 2 - Webkul Blog","description":"We will learn how to customize product page layout for a specific product in Magento 2. There are two ways for this.","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\/customize-layout-for-a-specific-product-in-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"How to Customize layout for a specific product in Magento 2 - Webkul Blog","og_description":"We will learn how to customize product page layout for a specific product in Magento 2. There are two ways for this.","og_url":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-07-14T14:52:32+00:00","article_modified_time":"2024-04-18T13:15:43+00:00","og_image":[{"url":"https:\/\/www.simicart.com\/blog\/wp-content\/uploads\/page-layout-design.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\/customize-layout-for-a-specific-product-in-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/"},"author":{"name":"Akash Panwar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/870aad64c7c0cf48e76bc72c1b63b5fb"},"headline":"How to Customize layout for a specific product in Magento 2","datePublished":"2023-07-14T14:52:32+00:00","dateModified":"2024-04-18T13:15:43+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/"},"wordCount":575,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.simicart.com\/blog\/wp-content\/uploads\/page-layout-design.png","keywords":["Adobe Commerce","Magento 2","Magento2"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/","url":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/","name":"How to Customize layout for a specific product in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.simicart.com\/blog\/wp-content\/uploads\/page-layout-design.png","datePublished":"2023-07-14T14:52:32+00:00","dateModified":"2024-04-18T13:15:43+00:00","description":"We will learn how to customize product page layout for a specific product in Magento 2. There are two ways for this.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#primaryimage","url":"https:\/\/www.simicart.com\/blog\/wp-content\/uploads\/page-layout-design.png","contentUrl":"https:\/\/www.simicart.com\/blog\/wp-content\/uploads\/page-layout-design.png"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/customize-layout-for-a-specific-product-in-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Customize layout for a specific product 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\/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\/391236","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=391236"}],"version-history":[{"count":13,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/391236\/revisions"}],"predecessor-version":[{"id":434958,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/391236\/revisions\/434958"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=391236"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=391236"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=391236"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}