{"id":424596,"date":"2024-03-07T10:03:57","date_gmt":"2024-03-07T10:03:57","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=424596"},"modified":"2024-04-08T09:50:40","modified_gmt":"2024-04-08T09:50:40","slug":"generate-and-use-critical-css-in-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/","title":{"rendered":"Critical CSS in Magento 2"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\"><strong>What is critical CSS in Magento 2?<\/strong><\/h3>\n\n\n\n<p>In <a href=\"https:\/\/webkul.com\/blog\/magento-tutorial\/\">Magento 2<\/a>, Critical CSS is a technique that extracts the CSS for above-the-fold(without scrolling down) to render content to the user as fast as possible.<\/p>\n\n\n\n<p>In easy words, whatever we see on a website without scrolling is Critical CSS.<\/p>\n\n\n\n<p>Let&#8217;s say you have a complicated webpage with numerous CSS files. <br><br>The home page will not be rendered until all of those CSS files are loaded, therefore we can create a critical CSS file that has all of the styles required to generate the basic structure of the home page.<\/p>\n\n\n\n<p>As a result, the homepage will be shown, and all non-critical CSS files will be loaded asynchronously.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Use of critical CSS<\/strong> <strong>in Magento 2<\/strong><\/h3>\n\n\n\n<p>Before showing a page, a browser needs to download and parse CSS files, which makes CSS a rendering-blocking resource. <br><br>If CSS files are large or network conditions are poor, CSS file requests can considerably increase the time it takes for a web page to render.<br><br>Using inlined critical CSS in the head increases rendering speed and performance, especially in poor network conditions. <br><br>All non-critical styles will load asynchronously, allowing us to drastically reduce the time it takes to render our websites for the first time.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>How to enable Critical CSS?<\/strong><\/h3>\n\n\n\n<p class=\"has-text-align-left\">1. <strong>Using Admin Panel<\/strong><\/p>\n\n\n\n<p>To enable&nbsp;Critical CSS from the admin panel, navigate.<\/p>\n\n\n\n<p>Stores &gt; Settings &gt; Configuration &gt; ADVANCED &gt; Developer tab &gt; CSS Settings<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"646\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45-1200x646.png\" alt=\"Screenshot-from-2024-02-27-12-35-45\" class=\"wp-image-424615\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45-1200x646.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45-300x162.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45-250x135.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45-768x413.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45.png 1211w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p><strong>Note: <\/strong>In production mode, the Developer Tab is disabled, in that case, you must enable it from the command line (CLI).<\/p>\n\n\n\n<p>2.<strong> Using Command Line(CLI)<\/strong><\/p>\n\n\n\n<p>To enable critical CSS via the Command Line, type the following command:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php bin\/magento config:set dev\/css\/use_css_critical_path 1<\/pre>\n\n\n\n<p><strong>Note: <\/strong>Please ensure your theme contains a critical.css file whereas the other non-critical path will load asynchronously.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>How to set up Critical CSS?<\/strong><\/h3>\n\n\n\n<p>The \u2018critical\u2019 CSS file should be located in,<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">app\/design\/frontend\/&lt;your_vendor_name&gt;\/&lt;your_theme_name&gt;\/web\/css\/critical.css<\/pre>\n\n\n\n<p>The default Luma theme critical CSS file is located in,<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">app\/design\/frontend\/Magento\/luma\/web\/css\/critical.css<\/pre>\n\n\n\n<p>The critical CSS file path can also be configured in<\/p>\n\n\n\n<p>app\/design\/frontend\/&lt;your_vendor_name&gt;\/&lt;your_theme_name&gt;<code>\/Magento_Theme\/layout\/default_head_block.xml<\/code><\/p>\n\n\n\n<p>That&#8217;s all you need to do. I hope this helps.<\/p>\n\n\n\n<p>Reference: <a href=\"https:\/\/developer.adobe.com\/commerce\/frontend-core\/guide\/css\/critical-path\/\">Magento DevDocs CSS Critical Path<\/a><\/p>\n\n\n\n<p>You can also check our other related blogs<\/p>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/how-to-remove-js-and-css-in-magento-2-using-layout-xml\/\">How to remove JS and CSS in Magento 2 using layout XML<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/understanding-magento-theme-how-to-change-image-orientation-at-frontend-and-other-things-using-view-xml\/\">Understanding Magento Theme<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is critical CSS in Magento 2? In Magento 2, Critical CSS is a technique that extracts the CSS for above-the-fold(without scrolling down) to render content to the user as fast as possible. In easy words, whatever we see on a website without scrolling is Critical CSS. Let&#8217;s say you have a complicated webpage with <a href=\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":369,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-424596","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to create an use critical CSS in Magento 2<\/title>\n<meta name=\"description\" content=\"In this article, we will learn how to use Critical CSS in Magento 2. Critical CSS helps to increase rendering speed and performance\" \/>\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\/generate-and-use-critical-css-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 create an use critical CSS in Magento 2\" \/>\n<meta property=\"og:description\" content=\"In this article, we will learn how to use Critical CSS in Magento 2. Critical CSS helps to increase rendering speed and performance\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-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=\"2024-03-07T10:03:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-08T09:50:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45-1200x646.png\" \/>\n<meta name=\"author\" content=\"Kukil Bora\" \/>\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=\"Kukil Bora\" \/>\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\/generate-and-use-critical-css-in-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/\"},\"author\":{\"name\":\"Kukil Bora\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/53875450d11bfd196e7580c778cbf085\"},\"headline\":\"Critical CSS in Magento 2\",\"datePublished\":\"2024-03-07T10:03:57+00:00\",\"dateModified\":\"2024-04-08T09:50:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/\"},\"wordCount\":379,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45-1200x646.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/\",\"name\":\"How to create an use critical CSS in Magento 2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45-1200x646.png\",\"datePublished\":\"2024-03-07T10:03:57+00:00\",\"dateModified\":\"2024-04-08T09:50:40+00:00\",\"description\":\"In this article, we will learn how to use Critical CSS in Magento 2. Critical CSS helps to increase rendering speed and performance\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45.png\",\"width\":1211,\"height\":652,\"caption\":\"Screenshot-from-2024-02-27-12-35-45\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Critical CSS 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\/53875450d11bfd196e7580c778cbf085\",\"name\":\"Kukil Bora\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f05508107cdd6c99d6bd22854ecbf3b4dcbdd56b789499f899de21e5b3c59e26?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\/f05508107cdd6c99d6bd22854ecbf3b4dcbdd56b789499f899de21e5b3c59e26?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Kukil Bora\"},\"description\":\"Kukil, a Magento master, excels in integrating marketplaces and shipping services. His PHP prowess ensures seamless eCommerce experiences. With a focus on customization, Kukil tailors Magento to unique business needs, providing exceptional solutions. Adobe's acquisition of Magento further highlights his expertise, offering cutting-edge digital commerce strategies.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/kukil-bora441\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create an use critical CSS in Magento 2","description":"In this article, we will learn how to use Critical CSS in Magento 2. Critical CSS helps to increase rendering speed and performance","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\/generate-and-use-critical-css-in-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"How to create an use critical CSS in Magento 2","og_description":"In this article, we will learn how to use Critical CSS in Magento 2. Critical CSS helps to increase rendering speed and performance","og_url":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2024-03-07T10:03:57+00:00","article_modified_time":"2024-04-08T09:50:40+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45-1200x646.png","type":"","width":"","height":""}],"author":"Kukil Bora","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Kukil Bora","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/"},"author":{"name":"Kukil Bora","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/53875450d11bfd196e7580c778cbf085"},"headline":"Critical CSS in Magento 2","datePublished":"2024-03-07T10:03:57+00:00","dateModified":"2024-04-08T09:50:40+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/"},"wordCount":379,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45-1200x646.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/","url":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/","name":"How to create an use critical CSS in Magento 2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45-1200x646.png","datePublished":"2024-03-07T10:03:57+00:00","dateModified":"2024-04-08T09:50:40+00:00","description":"In this article, we will learn how to use Critical CSS in Magento 2. Critical CSS helps to increase rendering speed and performance","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/02\/Screenshot-from-2024-02-27-12-35-45.png","width":1211,"height":652,"caption":"Screenshot-from-2024-02-27-12-35-45"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/generate-and-use-critical-css-in-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Critical CSS 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\/53875450d11bfd196e7580c778cbf085","name":"Kukil Bora","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f05508107cdd6c99d6bd22854ecbf3b4dcbdd56b789499f899de21e5b3c59e26?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\/f05508107cdd6c99d6bd22854ecbf3b4dcbdd56b789499f899de21e5b3c59e26?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Kukil Bora"},"description":"Kukil, a Magento master, excels in integrating marketplaces and shipping services. His PHP prowess ensures seamless eCommerce experiences. With a focus on customization, Kukil tailors Magento to unique business needs, providing exceptional solutions. Adobe's acquisition of Magento further highlights his expertise, offering cutting-edge digital commerce strategies.","url":"https:\/\/webkul.com\/blog\/author\/kukil-bora441\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/424596","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\/369"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=424596"}],"version-history":[{"count":12,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/424596\/revisions"}],"predecessor-version":[{"id":432338,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/424596\/revisions\/432338"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=424596"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=424596"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=424596"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}