{"id":329583,"date":"2022-04-14T14:24:24","date_gmt":"2022-04-14T14:24:24","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=329583"},"modified":"2022-04-19T05:02:04","modified_gmt":"2022-04-19T05:02:04","slug":"create-your-custom-javascript-event-in-prestashop-1-7","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/","title":{"rendered":"Create your custom JavaScript event in PrestaShop 1.7"},"content":{"rendered":"\n<p>In this blog, we are going to learn how to create your own JavaScript event in PrestaShop 1.7. In PrestaShop 1.7, there are already some JavaScript events are available like <code>updatedCart<\/code>, <code>updateProduct<\/code>, <code>clickQuickView<\/code>, etc. You can check the list of available JavaScript events using the below link:<\/p>\n\n\n\n<p><a href=\"https:\/\/devdocs.prestashop.com\/1.7\/themes\/reference\/javascript-events\/\">https:\/\/devdocs.prestashop.com\/1.7\/themes\/reference\/javascript-events\/<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Dispatch an event<\/h2>\n\n\n\n<p>The best way to trigger an event is to use the&nbsp;<code>prestashop<\/code>&nbsp;object. Here is the syntax:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">prestashop.emit(\n    &#039;yourCustomEventName&#039;, \n    { \n        Event data \n    }\n);<\/pre>\n\n\n\n<p>For example:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">prestashop.emit(\n    &#039;wkCustomJsEventMsg&#039;, \n    { \n        title: &#039;Success&#039;, \n        message: &#039;This is custom test event.&#039; \n    }\n);<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Listening to events<\/h2>\n\n\n\n<p>You can listen to this event emitted by <code>prestashop.emit<\/code> using the <code>prestashop<\/code> object. Here is the syntax:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">prestashop.on(\n    &#039;yourCustomEventName&#039;,\n    function (eventData) {\n        \/\/ do your stuff here with eventData variable\n    }\n);<\/pre>\n\n\n\n<p>For example:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">prestashop.on(\n    &#039;wkCustomJsEventMsg&#039;,\n    function (event) {\n        $.growl.notice(\n            { \n                title: event.title, \n                message: event.message \n            }\n        );\n    }\n);<\/pre>\n\n\n\n<p>In this example, I have displayed the custom title and the message passed through <code>prestashop.emit<\/code> method. We listen to <code>wkCustomJsEventMsg<\/code> event and display the message.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"427\" height=\"168\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.png\" alt=\"image-52\" class=\"wp-image-329595\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.png 427w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52-300x118.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52-250x98.png 250w\" sizes=\"(max-width: 427px) 100vw, 427px\" loading=\"lazy\" \/><figcaption>Event message<\/figcaption><\/figure><\/div>\n\n\n\n<p>You can also check our blogs related to this topic:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/webkul.com\/blog\/identify-user-actions-with-js-event-in-prestashop-1-7\/\" target=\"_blank\" rel=\"noreferrer noopener\">Identify User Actions with JS event in PrestaShop 1.7<\/a><\/li><li><a href=\"https:\/\/webkul.com\/blog\/how-to-perform-action-after-prestashop-javascript-events-in-v1-7\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to perform action after PrestaShop javascript events in V1.7<\/a><\/li><\/ul>\n\n\n\n<p>That\u2019s all.<\/p>\n\n\n\n<p>If any issue or doubt in the above process, please feel free to let us know 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 <a href=\"https:\/\/webkul.com\/prestashop-development\/\">PrestaShop Development Services<\/a> and a large range of quality <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\">support@webkul.com<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we are going to learn how to create your own JavaScript event in PrestaShop 1.7. In PrestaShop 1.7, there are already some JavaScript events are available like updatedCart, updateProduct, clickQuickView, etc. You can check the list of available JavaScript events using the below link: https:\/\/devdocs.prestashop.com\/1.7\/themes\/reference\/javascript-events\/ Dispatch an event The best way to <a href=\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/\">[&#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":[198,209],"tags":[2064,2065],"class_list":["post-329583","post","type-post","status-publish","format-standard","hentry","category-javascript","category-prestashop","tag-javascript","tag-prestashop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create your custom JavaScript event in PrestaShop 1.7 - Webkul Blog<\/title>\n<meta name=\"description\" content=\"In this blog, we will learn how to create our own JavaScript event in PrestaShop 1.7. In PrestaShop, there are already JS events available.\" \/>\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\/create-your-custom-javascript-event-in-prestashop-1-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create your custom JavaScript event in PrestaShop 1.7 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In this blog, we will learn how to create our own JavaScript event in PrestaShop 1.7. In PrestaShop, there are already JS events available.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/\" \/>\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-14T14:24:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-19T05:02:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.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\/create-your-custom-javascript-event-in-prestashop-1-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/\"},\"author\":{\"name\":\"Ajeet Chauhan\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7eee8f48857441660231d6a643103357\"},\"headline\":\"Create your custom JavaScript event in PrestaShop 1.7\",\"datePublished\":\"2022-04-14T14:24:24+00:00\",\"dateModified\":\"2022-04-19T05:02:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/\"},\"wordCount\":207,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.png\",\"keywords\":[\"JavaScript\",\"prestashop\"],\"articleSection\":[\"JavaScript\",\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/\",\"name\":\"Create your custom JavaScript event in PrestaShop 1.7 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.png\",\"datePublished\":\"2022-04-14T14:24:24+00:00\",\"dateModified\":\"2022-04-19T05:02:04+00:00\",\"description\":\"In this blog, we will learn how to create our own JavaScript event in PrestaShop 1.7. In PrestaShop, there are already JS events available.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.png\",\"width\":427,\"height\":168,\"caption\":\"image-52\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create your custom JavaScript event in PrestaShop 1.7\"}]},{\"@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":"Create your custom JavaScript event in PrestaShop 1.7 - Webkul Blog","description":"In this blog, we will learn how to create our own JavaScript event in PrestaShop 1.7. In PrestaShop, there are already JS events available.","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\/create-your-custom-javascript-event-in-prestashop-1-7\/","og_locale":"en_US","og_type":"article","og_title":"Create your custom JavaScript event in PrestaShop 1.7 - Webkul Blog","og_description":"In this blog, we will learn how to create our own JavaScript event in PrestaShop 1.7. In PrestaShop, there are already JS events available.","og_url":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-04-14T14:24:24+00:00","article_modified_time":"2022-04-19T05:02:04+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.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\/create-your-custom-javascript-event-in-prestashop-1-7\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/"},"author":{"name":"Ajeet Chauhan","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7eee8f48857441660231d6a643103357"},"headline":"Create your custom JavaScript event in PrestaShop 1.7","datePublished":"2022-04-14T14:24:24+00:00","dateModified":"2022-04-19T05:02:04+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/"},"wordCount":207,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.png","keywords":["JavaScript","prestashop"],"articleSection":["JavaScript","prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/","url":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/","name":"Create your custom JavaScript event in PrestaShop 1.7 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.png","datePublished":"2022-04-14T14:24:24+00:00","dateModified":"2022-04-19T05:02:04+00:00","description":"In this blog, we will learn how to create our own JavaScript event in PrestaShop 1.7. In PrestaShop, there are already JS events available.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/image-52.png","width":427,"height":168,"caption":"image-52"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-your-custom-javascript-event-in-prestashop-1-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create your custom JavaScript event in PrestaShop 1.7"}]},{"@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\/329583","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=329583"}],"version-history":[{"count":6,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/329583\/revisions"}],"predecessor-version":[{"id":329748,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/329583\/revisions\/329748"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=329583"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=329583"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=329583"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}