{"id":331831,"date":"2022-04-28T12:57:45","date_gmt":"2022-04-28T12:57:45","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=331831"},"modified":"2022-04-29T10:07:44","modified_gmt":"2022-04-29T10:07:44","slug":"custom-hook-in-prestashop","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/","title":{"rendered":"Custom hook in PrestaShop"},"content":{"rendered":"\n<p>In this blog, we are going to learn how we can create and use a custom hook in PrestaShop. PrestaShop already has <a href=\"https:\/\/devdocs.prestashop.com\/1.7\/modules\/concepts\/hooks\/list-of-hooks\/\" target=\"_blank\" rel=\"noreferrer noopener\">various hooks<\/a> on different locations of code, which helps to customize or perform any action under certain circumstances.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png\" alt=\"Custom hook in PrestaShop\" class=\"wp-image-331982\" width=\"820\" height=\"374\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png 1051w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt-300x137.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt-250x114.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt-768x351.png 768w\" sizes=\"(max-width: 820px) 100vw, 820px\" loading=\"lazy\" \/><figcaption>Custom hook in PrestaShop<\/figcaption><\/figure>\n\n\n\n<ul class=\"wp-block-list\"><li>action<\/li><li>display<\/li><\/ul>\n\n\n\n<p><strong>action<\/strong>: Action hook is written like <code>\"actionDoSomething\"<\/code> here, prefix action indicates hook is triggered by an event.<\/p>\n\n\n\n<p><strong>display<\/strong>: Display hook is written like <code>\"displaySomething\"<\/code> here, prefix display indicates hook is displayed on something, either in the back office or front office.<\/p>\n\n\n\n<p>For creating a custom hook in PrestaShop we follow the same method.<\/p>\n\n\n\n<p>Firstly, declare the function in the module main class file as written below,<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">public function hookDisplayBelowCustomerLoginForm()\n{\n return $this-&gt;fetch(&#039;module:demo\/views\/templates\/hook\/cusLogin.tpl&#039;);\n}\npublic function hookActionAdminLoginSubmit()\n{\n  \/\/ do something\n  return true;\n}<\/pre>\n\n\n\n<p> Here we are showing you an example of a display hook used to show some extra content below the fields of customer login and doing some action on admin login. <\/p>\n\n\n\n<p>Secondly, you have to register this hook in your module while installing the module as given below<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">public function install()\n{    \n    $this-&gt;registerHook(&#039;displayBelowCustomerLoginForm&#039;);\n    $this-&gt;registerHook(&#039;actionAdminLoginSubmit&#039;);\n    return true;    \n}<\/pre>\n\n\n\n<p>Finally, you have to call this hook from the location where you want to display it. In this example, we are adding a display block between customer login form so we added hook calling in the below file<br><code><strong>prestashop\/themes\/classic\/templates\/customer\/_partials\/login-form.tpl<\/strong><\/code><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">..........\n  &lt;div class=&quot;forgot-password&quot;&gt;\n    &lt;a href=&quot;{$urls.pages.password}&quot; rel=&quot;nofollow&quot;&gt;\n      {l s=&#039;Forgot your password?&#039; d=&#039;Shop.Theme.Customeraccount&#039;}\n    &lt;\/a&gt;\n  &lt;\/div&gt;\n&lt;\/div&gt;\n&lt;strong&gt;{hook h=&#039;displayBelowCustomerLoginForm&#039;}&lt;\/strong&gt;\n{block name=&#039;login_form_footer&#039;}\n  &lt;footer class=&quot;form-footer text-sm-center clearfix&quot;&gt;\n.......<\/pre>\n\n\n\n<p>We want to execute the action hook while the admin login so we added it below file as<\/p>\n\n\n\n<p><strong><code>prestashop\/controllers\/admin\/AdminLoginController.php<\/code><\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">public function processLogin()\n{.....\n   &lt;strong&gt;Hook::exec(&#039;actionAdminLoginSubmit&#039;);&lt;\/strong&gt;\n   if (!count($this-&gt;errors)) { ....<\/pre>\n\n\n\n<p>You can also pass parameters to these hooks as given below<\/p>\n\n\n\n<p>In tpl <code><strong>{hook h='displayBelowCustomerLoginForm' id_module=$id_module}<\/strong><\/code><\/p>\n\n\n\n<p>In twig <br><code><strong>{{renderhook('<code><strong>displayBelowCustomerLoginForm<\/strong><\/code>', {<\/strong><\/code>&#8216;<code><strong><code><strong>id_module': id_module<\/strong><\/code>})}}<\/strong><\/code><\/p>\n\n\n\n<p>and fetch it in function as <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">public function hookDisplayBelowCustomerLoginForm($params)\n{\n   $idModule = $params&#091;&#039;id_module&#039;];\n   return $this-&gt;fetch(&#039;module:demo\/views\/templates\/hook\/cusLogin.tpl&#039;);\n}\n\npublic function hookActionAdminLoginSubmit($params)\n{\n   $idModule = $params&#091;&#039;id_module&#039;];\n   $idEmployee = $params&#091;&#039;id_empoloyee&#039;]; \n   \/\/ do something\n   return true;\n}<\/pre>\n\n\n\n<p>That&#8217;s, all for the custom hook in PrestaShop. <\/p>\n\n\n\n<p>If you are facing any issues or doubts in the above process, please feel free to contact us through 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;and a large range of quality&nbsp;<a href=\"https:\/\/store.webkul.com\/PrestaShop-Extensions.html\">PrestaShop Modules<\/a>.<\/p>\n\n\n\n<p>For any doubt contact us at&nbsp;<a href=\"mailto:support@webkul.com\" target=\"_blank\" rel=\"noreferrer noopener\">support@webkul.com<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we are going to learn how we can create and use a custom hook in PrestaShop. PrestaShop already has various hooks on different locations of code, which helps to customize or perform any action under certain circumstances. action display action: Action hook is written like &#8220;actionDoSomething&#8221; here, prefix action indicates hook is <a href=\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":386,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[209],"tags":[2859],"class_list":["post-331831","post","type-post","status-publish","format-standard","hentry","category-prestashop","tag-prestashop-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Custom hook in PrestaShop - Webkul Blog<\/title>\n<meta name=\"description\" content=\"How to create and use a custom hook in PrestaShop, for dispalying or doing any action on execution of specific code block.\" \/>\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\/custom-hook-in-prestashop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Custom hook in PrestaShop - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"How to create and use a custom hook in PrestaShop, for dispalying or doing any action on execution of specific code block.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/custom-hook-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=\"2022-04-28T12:57:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-29T10:07:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png\" \/>\n<meta name=\"author\" content=\"Vineet Kr. Gupta\" \/>\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=\"Vineet Kr. Gupta\" \/>\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\/custom-hook-in-prestashop\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/\"},\"author\":{\"name\":\"Vineet Kr. Gupta\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/bb871a3e8dd81b2b0a1690f195da6208\"},\"headline\":\"Custom hook in PrestaShop\",\"datePublished\":\"2022-04-28T12:57:45+00:00\",\"dateModified\":\"2022-04-29T10:07:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/\"},\"wordCount\":305,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png\",\"keywords\":[\"prestashop blog\"],\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/\",\"url\":\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/\",\"name\":\"Custom hook in PrestaShop - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png\",\"datePublished\":\"2022-04-28T12:57:45+00:00\",\"dateModified\":\"2022-04-29T10:07:44+00:00\",\"description\":\"How to create and use a custom hook in PrestaShop, for dispalying or doing any action on execution of specific code block.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png\",\"width\":1051,\"height\":480,\"caption\":\"oie_8xnnf90P0cVt\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Custom hook 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\/bb871a3e8dd81b2b0a1690f195da6208\",\"name\":\"Vineet Kr. Gupta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b8dd0faa3589c82d64586b71a9e84be11a8b9a8f3b74bb952442b904af1c68f2?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\/b8dd0faa3589c82d64586b71a9e84be11a8b9a8f3b74bb952442b904af1c68f2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Vineet Kr. Gupta\"},\"description\":\"Proficient Software Engineer specializing in PrestaShop, with expertise in Mobile App Development, eCommerce Platform Development, and POS services. Delivers innovative, user-focused solutions that enhance functionality and drive efficient business operations.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/vineetkr-gupta008\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Custom hook in PrestaShop - Webkul Blog","description":"How to create and use a custom hook in PrestaShop, for dispalying or doing any action on execution of specific code block.","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\/custom-hook-in-prestashop\/","og_locale":"en_US","og_type":"article","og_title":"Custom hook in PrestaShop - Webkul Blog","og_description":"How to create and use a custom hook in PrestaShop, for dispalying or doing any action on execution of specific code block.","og_url":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-04-28T12:57:45+00:00","article_modified_time":"2022-04-29T10:07:44+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png","type":"","width":"","height":""}],"author":"Vineet Kr. Gupta","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Vineet Kr. Gupta","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/"},"author":{"name":"Vineet Kr. Gupta","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/bb871a3e8dd81b2b0a1690f195da6208"},"headline":"Custom hook in PrestaShop","datePublished":"2022-04-28T12:57:45+00:00","dateModified":"2022-04-29T10:07:44+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/"},"wordCount":305,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png","keywords":["prestashop blog"],"articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/","url":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/","name":"Custom hook in PrestaShop - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png","datePublished":"2022-04-28T12:57:45+00:00","dateModified":"2022-04-29T10:07:44+00:00","description":"How to create and use a custom hook in PrestaShop, for dispalying or doing any action on execution of specific code block.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/oie_8xnnf90P0cVt.png","width":1051,"height":480,"caption":"oie_8xnnf90P0cVt"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/custom-hook-in-prestashop\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Custom hook 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\/bb871a3e8dd81b2b0a1690f195da6208","name":"Vineet Kr. Gupta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b8dd0faa3589c82d64586b71a9e84be11a8b9a8f3b74bb952442b904af1c68f2?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\/b8dd0faa3589c82d64586b71a9e84be11a8b9a8f3b74bb952442b904af1c68f2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Vineet Kr. Gupta"},"description":"Proficient Software Engineer specializing in PrestaShop, with expertise in Mobile App Development, eCommerce Platform Development, and POS services. Delivers innovative, user-focused solutions that enhance functionality and drive efficient business operations.","url":"https:\/\/webkul.com\/blog\/author\/vineetkr-gupta008\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/331831","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\/386"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=331831"}],"version-history":[{"count":16,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/331831\/revisions"}],"predecessor-version":[{"id":331983,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/331831\/revisions\/331983"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=331831"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=331831"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=331831"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}