{"id":43691,"date":"2016-03-21T11:09:15","date_gmt":"2016-03-21T11:09:15","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=43691"},"modified":"2024-04-05T07:46:50","modified_gmt":"2024-04-05T07:46:50","slug":"add-product-information-checkout-cart-in-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/","title":{"rendered":"How to add more product information on checkout cart in magento2"},"content":{"rendered":"\n<p>How to add more product information on <a href=\"https:\/\/webkul.com\/blog\/magento2-custom-checkout-steps\/\">checkout cart in magento2<\/a> &#8211; IF there is a need to add some more information on per products in checkout cart page in magento2 and have difficulty to implement it then the solution is here. <\/p>\n\n\n\n<p>You can easily add custom information to cart products by following this post. For this just need to do some easy changes here-<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Create a Simple Magento 2 Module<\/h2>\n\n\n\n<p>The best practice and the recommended code standard for Magento 2 is to&nbsp;<a href=\"https:\/\/www.cloudways.com\/blog\/create-module-in-magento-2\/\" target=\"_blank\" rel=\"noopener noreferrer\">create a module<\/a>.<\/p>\n\n\n\n<p>Here, I will use <span class=\"lang:default decode:true crayon-inline\">Webkul<\/span> as Module Namespace and <span class=\"lang:default decode:true crayon-inline\">Grid<\/span>&nbsp;as Module Name.<\/p>\n\n\n\n<p>First, create a&nbsp;<span class=\"lang:default decode:true crayon-inline \">registration.php<\/span>&nbsp;file in&nbsp;<span class=\"lang:default decode:true crayon-inline\">\/app\/code\/Webkul\/Grid\/<\/span><strong>.&nbsp;<\/strong>Add the following code to the file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\\Magento\\Framework\\Component\\ComponentRegistrar::register(\n    \\Magento\\Framework\\Component\\ComponentRegistrar::MODULE,\n    &#039;Webkul_Grid&#039;,\n    __DIR__\n);<\/pre>\n\n\n\n<p>Now, create a&nbsp;<span class=\"lang:default decode:true crayon-inline \">module.xml<\/span>&nbsp;file in<strong>&nbsp;<span class=\"lang:default decode:true crayon-inline \">\/app\/code\/<span class=\"lang:default decode:true crayon-inline\">Webkul<\/span>\/<span class=\"lang:default decode:true crayon-inline\">Grid<\/span>\/etc\/<\/span>&nbsp;<\/strong>with the following content.<\/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:Module\/etc\/module.xsd&quot;&gt;\n  &lt;module name=&quot;Webkul_Grid&quot; &gt;&lt;\/module&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p>Step 1 \u2013 Call your block and template file to&nbsp;checkout_cart_index.xml inside your magento2 module layout folder.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;page 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;additional.product.info&quot;&gt;\n            &lt;block class=&quot;Webkul\\Grid\\Block\\AdditionalProInfo&quot; name=&quot;cart_item_addional_info&quot; template=&quot;Webkul_Grid::checkout\/cart\/item\/additionalinfo.phtml&quot; cacheable=&quot;false&quot;\/&gt;\n        &lt;\/referenceContainer&gt;\n    &lt;\/body&gt;\n&lt;\/page&gt;<\/pre>\n\n\n\n<p>Step 2 &#8211; Now Prepare the block&nbsp;file &#8211; <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Webkul\\Grid\\Block;\n\n\/**\n * AdditionalProInfo\n *\/\nclass AdditionalProInfo extends \\Magento\\Framework\\View\\Element\\Template\n{\n    \/**\n     * @param \\Magento\\Framework\\View\\Element\\Template\\Context $context\n     * @param array $data\n     *\/\n    public function __construct(\n        \\Magento\\Framework\\View\\Element\\Template\\Context $context,\n        array $data = &#091;]\n    ) {\n        parent::__construct($context, $data);\n    }\n\n    \/**\n     * @return void\n     *\/\n    protected function _construct()\n    {\n        parent::_construct();\n    }\n\n    \/**\n     * @return $this\n     *\/\n    protected function _prepareLayout()\n    {\n        parent::_prepareLayout();\n    }\n\n    \/**\n     * @return additional information data\n     *\/\n    public function getAdditionalData()\n    {\n        \/\/ Do your code here\n        return &quot;Additional Informations&quot;;\n    }\n}<\/pre>\n\n\n\n<p>Step 3 &#8211; Prepare additional information template file additionalinfo.phtml &#8211; <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$_item = $block-&gt;getItem();\n$product = $_item-&gt;getProduct(); \/\/ Get cart product details\n$additional_data = $block-&gt;getAdditionalData(); \/\/ Get cart product additionl details defined in block page\n?&gt;\n&lt;div&gt;\n    &lt;span&gt;&lt;?php echo $additional_data?&gt;&lt;\/span&gt;\n&lt;\/div&gt;<\/pre>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Now you will see the cart page like &#8211;<img decoding=\"async\" class=\"alignnone size-full wp-image-43694\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/iTdGLiC.png\" alt=\"iTdGLiC\" width=\"1291\" height=\"642\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/iTdGLiC.png 1291w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/iTdGLiC-250x124.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/iTdGLiC-300x149.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/iTdGLiC-768x382.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/iTdGLiC-1200x597.png 1200w\" sizes=\"(max-width: 1291px) 100vw, 1291px\" loading=\"lazy\" \/><\/li>\n<\/ol>\n\n\n\n<p>So in this way you can display additional product information to your cart page.<\/p>\n\n\n\n<p>How to add more product information on checkout cart in magento2<\/p>\n\n\n\n<p>You can also check the below links :<\/p>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/custom-checkout-step-in-magento2\/\">https:\/\/webkul.com\/blog\/custom-checkout-step-in-magento2\/<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/developer.adobe.com\/commerce\/php\/tutorials\/frontend\/custom-checkout\/\">https:\/\/developer.adobe.com\/commerce\/php\/tutorials\/frontend\/custom-checkout\/<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to add more product information on checkout cart in magento2 &#8211; IF there is a need to add some more information on per products in checkout cart page in magento2 and have difficulty to implement it then the solution is here. You can easily add custom information to cart products by following this post. <a href=\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":15,"featured_media":43620,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[2897,2898],"class_list":["post-43691","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-additional-product-inforation","tag-magento2-cart"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Add product information on checkout cart in magento2<\/title>\n<meta name=\"description\" content=\"If there is a need to add some more information on per products in checkout cart page in magento2 and have difficulty to implement it.\" \/>\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-product-information-checkout-cart-in-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Add product information on checkout cart in magento2\" \/>\n<meta property=\"og:description\" content=\"If there is a need to add some more information on per products in checkout cart page in magento2 and have difficulty to implement it.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-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-03-21T11:09:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-05T07:46:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/Magneto-Code-Snippet-1.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=\"Pooja Sahu\" \/>\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=\"Pooja Sahu\" \/>\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\/add-product-information-checkout-cart-in-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/\"},\"author\":{\"name\":\"Pooja Sahu\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/420601cccfd5bc83506bcdd12362504b\"},\"headline\":\"How to add more product information on checkout cart in magento2\",\"datePublished\":\"2016-03-21T11:09:15+00:00\",\"dateModified\":\"2024-04-05T07:46:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/\"},\"wordCount\":246,\"commentCount\":9,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/Magneto-Code-Snippet-1.png\",\"keywords\":[\"additional product inforation\",\"magento2 cart\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/\",\"name\":\"Add product information on checkout cart in magento2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/Magneto-Code-Snippet-1.png\",\"datePublished\":\"2016-03-21T11:09:15+00:00\",\"dateModified\":\"2024-04-05T07:46:50+00:00\",\"description\":\"If there is a need to add some more information on per products in checkout cart page in magento2 and have difficulty to implement it.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/Magneto-Code-Snippet-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/Magneto-Code-Snippet-1.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add more product information on checkout cart in magento2\"}]},{\"@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\/420601cccfd5bc83506bcdd12362504b\",\"name\":\"Pooja Sahu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/87f400f19d2c602040b38dc2db6412c18f8c1ee7405e40a06bf4a21f24ea12c7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/87f400f19d2c602040b38dc2db6412c18f8c1ee7405e40a06bf4a21f24ea12c7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Pooja Sahu\"},\"description\":\"Pooja Sahu is an Adobe Certified Professional &ndash; Developer in the Magento department, with expertise in HTML, CSS, JavaScript, MySQL, eCommerce platform development, and PWA. Her skills drive innovative solutions and enhance user experiences across various platforms.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/pooja\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Add product information on checkout cart in magento2","description":"If there is a need to add some more information on per products in checkout cart page in magento2 and have difficulty to implement it.","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-product-information-checkout-cart-in-magento2\/","og_locale":"en_US","og_type":"article","og_title":"Add product information on checkout cart in magento2","og_description":"If there is a need to add some more information on per products in checkout cart page in magento2 and have difficulty to implement it.","og_url":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-03-21T11:09:15+00:00","article_modified_time":"2024-04-05T07:46:50+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/Magneto-Code-Snippet-1.png","type":"image\/png"}],"author":"Pooja Sahu","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Pooja Sahu","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/"},"author":{"name":"Pooja Sahu","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/420601cccfd5bc83506bcdd12362504b"},"headline":"How to add more product information on checkout cart in magento2","datePublished":"2016-03-21T11:09:15+00:00","dateModified":"2024-04-05T07:46:50+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/"},"wordCount":246,"commentCount":9,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/Magneto-Code-Snippet-1.png","keywords":["additional product inforation","magento2 cart"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/","url":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/","name":"Add product information on checkout cart in magento2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/Magneto-Code-Snippet-1.png","datePublished":"2016-03-21T11:09:15+00:00","dateModified":"2024-04-05T07:46:50+00:00","description":"If there is a need to add some more information on per products in checkout cart page in magento2 and have difficulty to implement it.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/Magneto-Code-Snippet-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/03\/Magneto-Code-Snippet-1.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/add-product-information-checkout-cart-in-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to add more product information on checkout cart in magento2"}]},{"@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\/420601cccfd5bc83506bcdd12362504b","name":"Pooja Sahu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/87f400f19d2c602040b38dc2db6412c18f8c1ee7405e40a06bf4a21f24ea12c7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/87f400f19d2c602040b38dc2db6412c18f8c1ee7405e40a06bf4a21f24ea12c7?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Pooja Sahu"},"description":"Pooja Sahu is an Adobe Certified Professional &ndash; Developer in the Magento department, with expertise in HTML, CSS, JavaScript, MySQL, eCommerce platform development, and PWA. Her skills drive innovative solutions and enhance user experiences across various platforms.","url":"https:\/\/webkul.com\/blog\/author\/pooja\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/43691","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\/15"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=43691"}],"version-history":[{"count":9,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/43691\/revisions"}],"predecessor-version":[{"id":431969,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/43691\/revisions\/431969"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/43620"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=43691"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=43691"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=43691"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}