{"id":354852,"date":"2022-10-14T05:39:58","date_gmt":"2022-10-14T05:39:58","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=354852"},"modified":"2022-10-27T07:33:38","modified_gmt":"2022-10-27T07:33:38","slug":"how-to-set-a-theme-on-a-specific-route-or-page","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/","title":{"rendered":"How to set a theme on a specific route or page in Magento 2"},"content":{"rendered":"\n<p>Here you learn about how to set a theme on a specific route or page in Magento 2. Sometimes we have installed any theme on our front end and we need to check a page on the luma or blank theme while debugging any issue with the layout or functionality this might help you to do so.<\/p>\n\n\n\n<p>Here we have a module named Webkul_Debug with routes.xml in Webkul\/Debug\/etc\/frontend\/routes.xml<\/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:App\/etc\/routes.xsd&quot;&gt;\n    &lt;router id=&quot;standard&quot;&gt;\n        &lt;route id=&quot;debug&quot; frontName=&quot;debug&quot;&gt;\n            &lt;module name=&quot;Webkul_Debug&quot;\/&gt;\n        &lt;\/route&gt;\n    &lt;\/router&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p>Then we create a controller to test the theme Webkul\/Debug\/Controller\/Index\/Index.php<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php declare(strict_types=1);\n\nnamespace Webkul\\Debug\\Controller\\Index;\n\nuse Magento\\Framework\\App\\Action\\HttpGetActionInterface;\nuse Magento\\Framework\\View\\Result\\Page;\nuse Magento\\Framework\\View\\Result\\PageFactory;\n\nclass Index implements HttpGetActionInterface\n{\n    \/** @var PageFactory *\/\n    private PageFactory $pageFactory;\n\n    \/**\n     * Index constructor.\n     * @param PageFactory $pageFactory\n     *\/\n    public function __construct(\n        PageFactory $pageFactory\n    ) {\n        $this-&gt;pageFactory = $pageFactory;\n    }\n\n    \/**\n     * @return Page\n     *\/\n    public function execute(): Page\n    {\n        return $this-&gt;pageFactory-&gt;create();\n    }\n}<\/pre>\n\n\n\n<p>Then we create an events.xml file to capture the layout load before event Webkul\/Debug\/etc\/events.xml<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&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;layout_load_before&quot;&gt;\n        &lt;observer name=&quot;webkul_debug_set_theme_for_debug&quot; instance=&quot;Webkul\\Debug\\Observer\\SetThemeForDebug&quot;\/&gt;\n    &lt;\/event&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p>Then we create an observer file for our event named &#8220;webkul_debug_set_theme_for_debug&#8221; SetThemeForDebug.php Path : &#8220;Webkul\/Debug\/Observer\/SetThemeForDebug.php&#8221;<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php declare(strict_types=1);\n\nnamespace Webkul\\Debug\\Observer;\n\nuse Magento\\Framework\\App\\Request\\Http;\nuse Magento\\Framework\\Event\\Observer;\nuse Magento\\Framework\\Event\\ObserverInterface;\nuse Magento\\Framework\\View\\DesignInterface;\n\nclass SetThemeForDebug implements ObserverInterface\n{\n    \/** @var Http *\/\n    private Http $request;\n\n    \/** @var DesignInterface  *\/\n    private DesignInterface $design;\n\n    \/**\n     * @param Http $request\n     * @param DesignInterface $design\n     *\/\n    public function __construct(\n        Http $request,\n        DesignInterface $design\n    ) {\n        $this-&gt;request = $request;\n        $this-&gt;design = $design;\n    }\n\n    \/**\n     * @param Observer $observer\n     *\/\n    public function execute(Observer $observer): void\n    {\n        $pathInfo = $this-&gt;request-&gt;getPathInfo();\n\n        if (substr($pathInfo, 0, 8) === &#039;\/debug&#039;) {\n            $this-&gt;design-&gt;setDesignTheme(&#039;Magento\/blank&#039;);\n        }\n    }\n}<\/pre>\n\n\n\n<p>In the &#8220;setDesignTheme&#8221; function you can set any theme just like we passed the &#8220;Magento\/blank&#8221; theme in the above code. And you can also change the condition on which the theme applies.<\/p>\n\n\n\n<p>So that&#8217;s how to set a theme on a specific route or page. Now we can see the blank theme on our created route &#8220;{base_url}\/debug&#8221; as shown in the below screenshot.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"672\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug-1200x672.png\" alt=\"How to set a theme on a specific route or page\" class=\"wp-image-354856\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug-1200x672.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug-300x168.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug-250x140.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug-768x430.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug.png 1256w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Here you check our other blogs: <\/p>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/webkul.com\/blog\/magento-2-how-to-configure-and-customize-system-xml\/<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/how-to-show-product-stock-remaining-items-in-magento-2\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/webkul.com\/blog\/how-to-show-product-stock-remaining-items-in-magento-2\/<\/a><\/p>\n\n\n\n<p>Here you can check all about Magento 2 themes configuration, and development.<\/p>\n\n\n\n<p><a href=\"https:\/\/developer.adobe.com\/commerce\/frontend-core\/guide\/themes\/\">https:\/\/developer.adobe.com\/commerce\/frontend-core\/guide\/themes\/<\/a><\/p>\n\n\n\n<p>Please feel free to ask any questions we will try to answer them.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here you learn about how to set a theme on a specific route or page in Magento 2. Sometimes we have installed any theme on our front end and we need to check a page on the luma or blank theme while debugging any issue with the layout or functionality this might help you to <a href=\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":366,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[3289,2070,1179],"class_list":["post-354852","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-debug","tag-magento2","tag-theme-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to set a theme on a specific route or page in Magento 2 - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Here you learn about how to set a theme on a specific route or page in Magento 2. Sometimes we need to check a page on the base theme while debugging.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to set a theme on a specific route or page in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Here you learn about how to set a theme on a specific route or page in Magento 2. Sometimes we need to check a page on the base theme while debugging.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/\" \/>\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=\"2022-10-14T05:39:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-27T07:33:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug-1200x672.png\" \/>\n<meta name=\"author\" content=\"Divya Prakash\" \/>\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=\"Divya Prakash\" \/>\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\/how-to-set-a-theme-on-a-specific-route-or-page\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/\"},\"author\":{\"name\":\"Divya Prakash\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/144f9781b7aee2d1d0fbfde8fb012a98\"},\"headline\":\"How to set a theme on a specific route or page in Magento 2\",\"datePublished\":\"2022-10-14T05:39:58+00:00\",\"dateModified\":\"2022-10-27T07:33:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/\"},\"wordCount\":260,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug-1200x672.png\",\"keywords\":[\"debug\",\"Magento2\",\"theme\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/\",\"name\":\"How to set a theme on a specific route or page in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug-1200x672.png\",\"datePublished\":\"2022-10-14T05:39:58+00:00\",\"dateModified\":\"2022-10-27T07:33:38+00:00\",\"description\":\"Here you learn about how to set a theme on a specific route or page in Magento 2. Sometimes we need to check a page on the base theme while debugging.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug.png\",\"width\":1256,\"height\":703,\"caption\":\"debug\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to set a theme on a specific route or page 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\/144f9781b7aee2d1d0fbfde8fb012a98\",\"name\":\"Divya Prakash\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?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\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Divya Prakash\"},\"description\":\"Divya Prakash, a talented Software Engineer, specializes in Magento development, delivering custom eCommerce solutions. Expertise in optimizing performance, integrating advanced features, and enhancing user experience drives innovation and business growth.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/divya-prakash407\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to set a theme on a specific route or page in Magento 2 - Webkul Blog","description":"Here you learn about how to set a theme on a specific route or page in Magento 2. Sometimes we need to check a page on the base theme while debugging.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/","og_locale":"en_US","og_type":"article","og_title":"How to set a theme on a specific route or page in Magento 2 - Webkul Blog","og_description":"Here you learn about how to set a theme on a specific route or page in Magento 2. Sometimes we need to check a page on the base theme while debugging.","og_url":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-10-14T05:39:58+00:00","article_modified_time":"2022-10-27T07:33:38+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug-1200x672.png","type":"","width":"","height":""}],"author":"Divya Prakash","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Divya Prakash","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/"},"author":{"name":"Divya Prakash","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/144f9781b7aee2d1d0fbfde8fb012a98"},"headline":"How to set a theme on a specific route or page in Magento 2","datePublished":"2022-10-14T05:39:58+00:00","dateModified":"2022-10-27T07:33:38+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/"},"wordCount":260,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug-1200x672.png","keywords":["debug","Magento2","theme"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/","url":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/","name":"How to set a theme on a specific route or page in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug-1200x672.png","datePublished":"2022-10-14T05:39:58+00:00","dateModified":"2022-10-27T07:33:38+00:00","description":"Here you learn about how to set a theme on a specific route or page in Magento 2. Sometimes we need to check a page on the base theme while debugging.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/debug.png","width":1256,"height":703,"caption":"debug"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-set-a-theme-on-a-specific-route-or-page\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to set a theme on a specific route or page 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\/144f9781b7aee2d1d0fbfde8fb012a98","name":"Divya Prakash","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?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\/737cd8c75620933a3158331d9c0152fbb05f9b4ba40ccd0c12ebe84c657a24f6?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Divya Prakash"},"description":"Divya Prakash, a talented Software Engineer, specializes in Magento development, delivering custom eCommerce solutions. Expertise in optimizing performance, integrating advanced features, and enhancing user experience drives innovation and business growth.","url":"https:\/\/webkul.com\/blog\/author\/divya-prakash407\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/354852","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\/366"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=354852"}],"version-history":[{"count":4,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/354852\/revisions"}],"predecessor-version":[{"id":355771,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/354852\/revisions\/355771"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=354852"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=354852"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=354852"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}