{"id":376673,"date":"2023-04-14T04:20:04","date_gmt":"2023-04-14T04:20:04","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=376673"},"modified":"2023-04-17T03:26:17","modified_gmt":"2023-04-17T03:26:17","slug":"how-to-use-complex-messages-in-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/","title":{"rendered":"How to use complex messages in Magento 2"},"content":{"rendered":"\n<p>Hello Guys, We are going to learn about the Complex messages in <a href=\"https:\/\/business.adobe.com\/in\/products\/magento\/magento-commerce.html\">Magento 2<\/a>.<br><\/p>\n\n\n\n<p>By default, when you call&nbsp;<code><strong>$this-&gt;messageManager-&gt;addSuccessMessage<\/strong><\/code>&nbsp;within Magento, you cannot pass custom HTML into your message. This doesn&#8217;t provide you with the flexibility to provide customized messages to your visitors.<\/p>\n\n\n\n<p>However, these functions strip tags, preventing the anchor to appear. So we can use the Complex message to show the anchor.<\/p>\n\n\n\n<p>If you don&#8217;t know how to create a custom module so you can refer to this blog for a custom module-&gt; <a href=\"https:\/\/webkul.com\/blog\/create-hello-module-in-magento2\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Create Hello World Module in Magento 2<\/a><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1<\/h2>\n\n\n\n<p>Add the below code in <strong>etc\/frontend\/di.xml<\/strong>. (change <strong>myexample<\/strong> and <strong>Vendor_Module<\/strong> to what you need)<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;type name=&quot;Magento\\Framework\\View\\Element\\Message\\MessageConfigurationsPool&quot;&gt;\n    &lt;arguments&gt;\n        &lt;argument name=&quot;configurationsMap&quot; xsi:type=&quot;array&quot;&gt;\n            &lt;item name=&quot;myexample&quot; xsi:type=&quot;array&quot;&gt;\n                &lt;item name=&quot;renderer&quot; xsi:type=&quot;const&quot;&gt;\\Magento\\Framework\\View\\Element\\Message\\Renderer\\BlockRenderer::CODE&lt;\/item&gt;\n                &lt;item name=&quot;data&quot; xsi:type=&quot;array&quot;&gt;\n                    &lt;item name=&quot;template&quot; xsi:type=&quot;string&quot;&gt;Vendor_Module::messages\/linked.phtml&lt;\/item&gt;\n                &lt;\/item&gt;\n            &lt;\/item&gt;\n        &lt;\/argument&gt;\n    &lt;\/arguments&gt;\n&lt;\/type&gt;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2<\/h2>\n\n\n\n<p>Created a phtml file as mentioned in the di.XMl file Vendor_Module::messages\/linked.phtml<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php echo $block-&gt;escapeUrl($block-&gt;getData(&#039;pre_link_text&#039;))?&gt;\n&lt;a href=&quot;&lt;?php echo $block-&gt;escapeUrl($block-&gt;getData(&#039;url&#039;))?&gt;&quot;&gt;&lt;?php echo $block-&gt;escapeHtml(__($block-&gt;getData(&#039;link_text&#039;))) ?&gt;&lt;\/a&gt;\n&lt;?php echo $block-&gt;escapeUrl($block-&gt;getData(&#039;post_link_text&#039;))?&gt;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3<\/h2>\n\n\n\n<p>Now you have to call the addComplexErrorMessage() with the given name.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$this-&gt;_messageManager-&gt;addComplexErrorMessage(&#039;myexample&#039;,\n            &#091;\n                &#039;pre_link_text&#039;=&gt;&#039;This is the Error Message&#039;,\n                &#039;url&#039; =&gt; &#039;https:\/\/example.com&#039;,\n                &#039;link_text&#039;=&gt;&#039;click here&#039;\n            ]);\n            \n    $this-&gt;_messageManager-&gt;addComplexSuccessMessage(&#039;myexample&#039;,\n            &#091;\n                &#039;pre_link_text&#039;=&gt;&#039;This is the Success Message&#039;,\n                &#039;url&#039; =&gt; &#039;https:\/\/example.com&#039;,\n                &#039;link_text&#039;=&gt;&#039;click here&#039;\n            ]);   \n\n     $this-&gt;_messageManager-&gt;addComplexNoticeMessage(&#039;myexample&#039;,\n            &#091;\n                &#039;pre_link_text&#039;=&gt;&#039;This is the Notice Message&#039;,\n                &#039;url&#039; =&gt; &#039;https:\/\/example.com&#039;,\n                &#039;link_text&#039;=&gt;&#039;click here&#039;\n            ]);<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Output<\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-1200x675.png\" alt=\"Screenshot-from-2023-04-13-16-38-24-1\" class=\"wp-image-376810\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-1200x675.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-300x169.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-250x141.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-768x432.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-1536x864.png 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1.png 1920w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>As you can see that we have used the complex messages in <a href=\"https:\/\/webkul.com\/hire-magento-developers\/\">Magento 2<\/a> in the custom module.<\/p>\n\n\n\n<p>Happy Coding! <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello Guys, We are going to learn about the Complex messages in Magento 2. By default, when you call&nbsp;$this-&gt;messageManager-&gt;addSuccessMessage&nbsp;within Magento, you cannot pass custom HTML into your message. This doesn&#8217;t provide you with the flexibility to provide customized messages to your visitors. However, these functions strip tags, preventing the anchor to appear. So we can <a href=\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":523,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,9121],"tags":[13998,13997,2070,2057],"class_list":["post-376673","post","type-post","status-publish","format-standard","hentry","category-magento","category-magento-2","tag-custom-module","tag-di-xml","tag-magento2","tag-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to use complex messages in Magento 2 - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Magento messages function strip tags, preventing the anchor to appear so you can use the complex messages in Magento 2.\" \/>\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-use-complex-messages-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 use complex messages in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Magento messages function strip tags, preventing the anchor to appear so you can use the complex messages in Magento 2.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-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-04-14T04:20:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-17T03:26:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-1200x675.png\" \/>\n<meta name=\"author\" content=\"Sumesh Kumar\" \/>\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=\"Sumesh Kumar\" \/>\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-use-complex-messages-in-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/\"},\"author\":{\"name\":\"Sumesh Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/a33dc0d6c11a015c288c07b41892f59e\"},\"headline\":\"How to use complex messages in Magento 2\",\"datePublished\":\"2023-04-14T04:20:04+00:00\",\"dateModified\":\"2023-04-17T03:26:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/\"},\"wordCount\":170,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-1200x675.png\",\"keywords\":[\"custom module\",\"di.xml\",\"Magento2\",\"PHP\"],\"articleSection\":[\"magento\",\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/\",\"name\":\"How to use complex messages in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-1200x675.png\",\"datePublished\":\"2023-04-14T04:20:04+00:00\",\"dateModified\":\"2023-04-17T03:26:17+00:00\",\"description\":\"Magento messages function strip tags, preventing the anchor to appear so you can use the complex messages in Magento 2.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1.png\",\"width\":1920,\"height\":1080,\"caption\":\"Screenshot-from-2023-04-13-16-38-24-1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to use complex messages 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\/a33dc0d6c11a015c288c07b41892f59e\",\"name\":\"Sumesh Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f13d947aff56bddfe679a150603adf2d461c6c78b6df48caff552a275dfc1d39?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\/f13d947aff56bddfe679a150603adf2d461c6c78b6df48caff552a275dfc1d39?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Sumesh Kumar\"},\"description\":\"Sumesh, a skilled Software Engineer, specializes in Magento Marketplace and Shipping Integration services, creating tailored solutions that enhance eCommerce efficiency, streamline operations and support business growth in digital storefronts.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/sumeshkumar-magento091\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to use complex messages in Magento 2 - Webkul Blog","description":"Magento messages function strip tags, preventing the anchor to appear so you can use the complex messages in Magento 2.","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-use-complex-messages-in-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"How to use complex messages in Magento 2 - Webkul Blog","og_description":"Magento messages function strip tags, preventing the anchor to appear so you can use the complex messages in Magento 2.","og_url":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-04-14T04:20:04+00:00","article_modified_time":"2023-04-17T03:26:17+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-1200x675.png","type":"","width":"","height":""}],"author":"Sumesh Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Sumesh Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/"},"author":{"name":"Sumesh Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/a33dc0d6c11a015c288c07b41892f59e"},"headline":"How to use complex messages in Magento 2","datePublished":"2023-04-14T04:20:04+00:00","dateModified":"2023-04-17T03:26:17+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/"},"wordCount":170,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-1200x675.png","keywords":["custom module","di.xml","Magento2","PHP"],"articleSection":["magento","Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/","url":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/","name":"How to use complex messages in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1-1200x675.png","datePublished":"2023-04-14T04:20:04+00:00","dateModified":"2023-04-17T03:26:17+00:00","description":"Magento messages function strip tags, preventing the anchor to appear so you can use the complex messages in Magento 2.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/Screenshot-from-2023-04-13-16-38-24-1.png","width":1920,"height":1080,"caption":"Screenshot-from-2023-04-13-16-38-24-1"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-use-complex-messages-in-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to use complex messages 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\/a33dc0d6c11a015c288c07b41892f59e","name":"Sumesh Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f13d947aff56bddfe679a150603adf2d461c6c78b6df48caff552a275dfc1d39?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\/f13d947aff56bddfe679a150603adf2d461c6c78b6df48caff552a275dfc1d39?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Sumesh Kumar"},"description":"Sumesh, a skilled Software Engineer, specializes in Magento Marketplace and Shipping Integration services, creating tailored solutions that enhance eCommerce efficiency, streamline operations and support business growth in digital storefronts.","url":"https:\/\/webkul.com\/blog\/author\/sumeshkumar-magento091\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/376673","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\/523"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=376673"}],"version-history":[{"count":23,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/376673\/revisions"}],"predecessor-version":[{"id":377035,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/376673\/revisions\/377035"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=376673"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=376673"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=376673"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}