{"id":413898,"date":"2023-12-04T07:34:33","date_gmt":"2023-12-04T07:34:33","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=413898"},"modified":"2023-12-04T07:34:33","modified_gmt":"2023-12-04T07:34:33","slug":"how-to-develop-a-widget-module-in-prestashop","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/","title":{"rendered":"How to develop a widget module in PrestaShop"},"content":{"rendered":"\n<p>In this block, we will learn how to develop a widget module in PrestaShop. In PrestaShop, the widget is the extended version of hooks. Hooks are displayed on the pre-defined positions in the theme but using a widget, we can display the contents everywhere by injecting the widget shortcode into the template or any hooks. A widget can be also called in the PHP classes like hooks.<\/p>\n\n\n\n<p>You can check the below link for the PrestaShop widget documentation:<\/p>\n\n\n\n<p><a href=\"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/widgets\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/widgets\/<\/a><\/p>\n\n\n\n<p>PrestaShop already uses some existing widget compatible modules like <code>ps_shoppingcart<\/code>, <code>ps_sharebuttons<\/code>, <code>ps_mainmenu<\/code>, etc. This feature was introduced in the PrestaShop v1.7.<\/p>\n\n\n\n<p>When a module implements widgets in its code, it allows:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A theme to call the module directly with&nbsp;<code>{widget name=\"&lt;module_name&gt;\"}<\/code><\/li>\n\n\n\n<li>the core to fallback on it if a registered hook is called but its method&nbsp;<code>hook&lt;hook_name&gt;()<\/code>&nbsp;does not exist.<\/li>\n<\/ul>\n\n\n\n<p>To make our module widget compatible, we need to implement the <code>PrestaShop\\PrestaShop\\Core\\Module\\WidgetInterface<\/code> interface and define the below two mandatory methods in the module main file:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">public function renderWidget($hookName, array $configuration);\npublic function getWidgetVariables($hookName, array $configuration);<\/pre>\n\n\n\n<p>The <code>renderWidget<\/code> method is responsible returns the generated view and the <code>getWidgetVariables<\/code> method is responsible for returning the widget variables.<\/p>\n\n\n\n<p>In both methods, we pass the below two arguments:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>$hookName<\/code>: providing the hook name allows the module to have a different behavior according to it.\n<ul class=\"wp-block-list\">\n<li><code>null<\/code>&nbsp;when the module is called directly from the widget system.<\/li>\n\n\n\n<li>Name of the hook when a non-implemented hook (fallback) is called.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><code>$configuration<\/code>: Array of parameters passed by hooks when it is called.<\/li>\n<\/ul>\n\n\n\n<p>As we have discussed initially in the blog, there are two ways to call the widget. One way to call using the widget and another way to call using a hook.<\/p>\n\n\n\n<h2>Call using widget:<\/h2>\n\n\n\n<p>To call a widget, we can use the below code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;!-- Generic call --&gt;\n{widget name=&#039;&lt;module_name&gt;&#039;}\n\n&lt;!-- Call with a hook name --&gt;\n{widget name=&#039;&lt;module_name&gt;&#039; hook=&#039;&lt;hook_name&gt;&#039;}<\/pre>\n\n\n\n<p>We can also call the widget in the PHP class using the below code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">Hook::coreRenderWidget($module, $hook_name, $params);<\/pre>\n\n\n\n<h2>Call using hook:<\/h2>\n\n\n\n<p>If your module registered a hook but its definition is not available in the module&#8217;s main file then the <code>renderWidget()<\/code> method will be executed.<\/p>\n\n\n\n<p>If your module registered a hook and its definition is available then it works as normally and executes the hook definition block.<\/p>\n\n\n\n<p>For a better understanding, you can check the below flow chart:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/img\/widget-example-hooks.png\" alt=\"How to develop PrestaShop widget module flow chart\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>You can see in the above image that the <code>displayLeftColumn<\/code> hook is called then PrestaShop checks if this hook is registered and has its definition is available in the module then executes the hook method. <\/p>\n\n\n\n<p>If the module has registered this hook and its definition is not available then again PrestaShop checks for if the module has implemented the widget interface. If yes, then the <code>renderWidget<\/code> method is executed and the hook name is passed to this method and displays the widget content on this hook.<\/p>\n\n\n\n<p>PrestaShop does nothing if the above two cases are not satisfied.<\/p>\n\n\n\n<p>As we know that hook can be triggered in two ways:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>in PHP class:<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">Hook::exec($hook_name)<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>in smarty template:<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">{hook h=&#039;&lt;hook_name&gt;&#039;}<\/pre>\n\n\n\n<p>That\u2019s all about this blog.<\/p>\n\n\n\n<p>If any issue or doubt please feel free to mention it in the comment section.<\/p>\n\n\n\n<p>I would be happy to help.<\/p>\n\n\n\n<p>Also, you can explore our&nbsp;<a href=\"https:\/\/webkul.com\/prestashop-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">PrestaShop Development Services<\/a>&nbsp;&amp; a large range of quality&nbsp;<a href=\"https:\/\/store.webkul.com\/PrestaShop-Extensions.html\" target=\"_blank\" rel=\"noreferrer noopener\">PrestaShop Modules<\/a>.<\/p>\n\n\n\n<p>For any doubt contact us at&nbsp;<a href=\"mailto:support@webkul.com\">support@webkul.com<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this block, we will learn how to develop a widget module in PrestaShop. In PrestaShop, the widget is the extended version of hooks. Hooks are displayed on the pre-defined positions in the theme but using a widget, we can display the contents everywhere by injecting the widget shortcode into the template or any hooks. <a href=\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":384,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[209],"tags":[2065,4829],"class_list":["post-413898","post","type-post","status-publish","format-standard","hentry","category-prestashop","tag-prestashop","tag-widget"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to develop a widget module in PrestaShop - Webkul Blog<\/title>\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-develop-a-widget-module-in-prestashop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to develop a widget module in PrestaShop - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In this block, we will learn how to develop a widget module in PrestaShop. In PrestaShop, the widget is the extended version of hooks. Hooks are displayed on the pre-defined positions in the theme but using a widget, we can display the contents everywhere by injecting the widget shortcode into the template or any hooks. [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/\" \/>\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-12-04T07:34:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/img\/widget-example-hooks.png\" \/>\n<meta name=\"author\" content=\"Ajeet Chauhan\" \/>\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=\"Ajeet Chauhan\" \/>\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-develop-a-widget-module-in-prestashop\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/\"},\"author\":{\"name\":\"Ajeet Chauhan\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7eee8f48857441660231d6a643103357\"},\"headline\":\"How to develop a widget module in PrestaShop\",\"datePublished\":\"2023-12-04T07:34:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/\"},\"wordCount\":533,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/img\/widget-example-hooks.png\",\"keywords\":[\"prestashop\",\"widget\"],\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/\",\"name\":\"How to develop a widget module in PrestaShop - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/img\/widget-example-hooks.png\",\"datePublished\":\"2023-12-04T07:34:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#primaryimage\",\"url\":\"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/img\/widget-example-hooks.png\",\"contentUrl\":\"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/img\/widget-example-hooks.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to develop a widget module in PrestaShop\"}]},{\"@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\/7eee8f48857441660231d6a643103357\",\"name\":\"Ajeet Chauhan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e97b5fe8122a2283f5fe35ae6fca4725ac46026413ce7959b575f842f6bd6c92?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\/e97b5fe8122a2283f5fe35ae6fca4725ac46026413ce7959b575f842f6bd6c92?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ajeet Chauhan\"},\"description\":\"Ajeet is a talented Software Engineer specializing in the PrestaShop platform. With expertise in PrestaShop Shipping &amp; Payments Integration, Marketplace Development, and Headless services, he delivers innovative solutions that enhance eCommerce functionality, driving seamless operations for businesses and their customers.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/ajeetchauhan-symfony143\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to develop a widget module in PrestaShop - Webkul Blog","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-develop-a-widget-module-in-prestashop\/","og_locale":"en_US","og_type":"article","og_title":"How to develop a widget module in PrestaShop - Webkul Blog","og_description":"In this block, we will learn how to develop a widget module in PrestaShop. In PrestaShop, the widget is the extended version of hooks. Hooks are displayed on the pre-defined positions in the theme but using a widget, we can display the contents everywhere by injecting the widget shortcode into the template or any hooks. [...]","og_url":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-12-04T07:34:33+00:00","og_image":[{"url":"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/img\/widget-example-hooks.png","type":"","width":"","height":""}],"author":"Ajeet Chauhan","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ajeet Chauhan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/"},"author":{"name":"Ajeet Chauhan","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7eee8f48857441660231d6a643103357"},"headline":"How to develop a widget module in PrestaShop","datePublished":"2023-12-04T07:34:33+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/"},"wordCount":533,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#primaryimage"},"thumbnailUrl":"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/img\/widget-example-hooks.png","keywords":["prestashop","widget"],"articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/","url":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/","name":"How to develop a widget module in PrestaShop - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#primaryimage"},"thumbnailUrl":"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/img\/widget-example-hooks.png","datePublished":"2023-12-04T07:34:33+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#primaryimage","url":"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/img\/widget-example-hooks.png","contentUrl":"https:\/\/devdocs.prestashop-project.org\/8\/modules\/concepts\/img\/widget-example-hooks.png"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-develop-a-widget-module-in-prestashop\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to develop a widget module in PrestaShop"}]},{"@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\/7eee8f48857441660231d6a643103357","name":"Ajeet Chauhan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e97b5fe8122a2283f5fe35ae6fca4725ac46026413ce7959b575f842f6bd6c92?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\/e97b5fe8122a2283f5fe35ae6fca4725ac46026413ce7959b575f842f6bd6c92?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ajeet Chauhan"},"description":"Ajeet is a talented Software Engineer specializing in the PrestaShop platform. With expertise in PrestaShop Shipping &amp; Payments Integration, Marketplace Development, and Headless services, he delivers innovative solutions that enhance eCommerce functionality, driving seamless operations for businesses and their customers.","url":"https:\/\/webkul.com\/blog\/author\/ajeetchauhan-symfony143\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/413898","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\/384"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=413898"}],"version-history":[{"count":26,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/413898\/revisions"}],"predecessor-version":[{"id":413955,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/413898\/revisions\/413955"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=413898"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=413898"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=413898"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}