{"id":329240,"date":"2022-04-13T11:56:18","date_gmt":"2022-04-13T11:56:18","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=329240"},"modified":"2022-04-26T10:56:38","modified_gmt":"2022-04-26T10:56:38","slug":"custom-block-in-order-confirmation-email-template-using-prestashop-1-7","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/","title":{"rendered":"Custom block in order confirmation email template using PrestaShop"},"content":{"rendered":"\n<p>In this blog, We are going to learn how we can add a custom block in order confirmation email templated using PrestaShop. We can achieve this by using the below explained steps.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1:<\/h3>\n\n\n\n<p>We can add custom information by making changes in core files which are explained below.<\/p>\n\n\n\n<p>Firstly, We need to make some changes (as per your requirement) in PRESTASHOP_DIR\/classes\/PaymentModule.php file in validateOrder() function.<\/p>\n\n\n\n<p>For example, We have just added a custom text in the email template for info. Check below code for more information.<\/p>\n\n\n\n<p><strong>File Path:<\/strong> PRESTASHOP_DIR\/classes\/PaymentModule.php<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$product_var_tpl = &#091;\n    &#039;id_product&#039; =&gt; $product&#091;&#039;id_product&#039;],\n    &#039;id_product_attribute&#039; =&gt; $product&#091;&#039;id_product_attribute&#039;],\n    &#039;reference&#039; =&gt; $product&#091;&#039;reference&#039;],\n    &#039;name&#039; =&gt; $product&#091;&#039;name&#039;] . (isset($product&#091;&#039;attributes&#039;]) ? &#039; - &#039; . $product&#091;&#039;attributes&#039;] : &#039;&#039;),\n    &#039;price&#039; =&gt; Tools::getContextLocale($this-&gt;context)-&gt;formatPrice($product_price * $product&#091;&#039;quantity&#039;], $this-&gt;context-&gt;currency-&gt;iso_code),\n    &#039;quantity&#039; =&gt; $product&#091;&#039;quantity&#039;],\n    &#039;customization&#039; =&gt; &#091;],\n    &#039;delivery_message&#039; =&gt; &quot;Your order will be delivered within 1-2 days.&quot;, \/\/ Custom Information Added\n];<\/pre>\n\n\n\n<p>After this, We need to add the desired HTML in the below file in the place where you want to show this custom information.<\/p>\n\n\n\n<p><strong>File Path:<\/strong> PRESTASHOP_DIR\/mails\/en\/order_conf.html<\/p>\n\n\n\n<p><strong>Custom HTML:<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;div style=&quot;margin:0px auto; max-width:604px;&quot;&gt;\n  &lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;\n    &lt;tbody&gt;\n      &lt;tr&gt;\n        &lt;td style=&quot;padding: 0 50px 0; text-align: left;&quot; align=&quot;left&quot;&gt;\n          &lt;div style=&quot;display:inline-block; vertical-align:top; width:100%;&quot; align=&quot;left&quot; width=&quot;100%&quot;&gt;\n            &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; role=&quot;presentation&quot; width=&quot;100%&quot;&gt;\n              &lt;tbody&gt;\n                  &lt;tr&gt;\n                    &lt;td style=&quot;padding: 15px; background: #d4edda; text-align: center; color: #155724; margin-bottom: 20px; display: block; border-color: #c3e6cb; font-weight: 600;&quot;&gt; {delivery_message} &lt;\/td&gt;\n                  &lt;\/tr&gt;\n              &lt;\/tbody&gt;\n            &lt;\/table&gt;\n          &lt;\/div&gt;\n        &lt;\/td&gt;\n      &lt;\/tr&gt;\n    &lt;\/tbody&gt;\n  &lt;\/table&gt;\n&lt;\/div&gt;<\/pre>\n\n\n\n<p>In conclusion, when we placed an order than we are getting added custom text in the order confirmation email template. Check below image.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"539\" height=\"624\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png\" alt=\"Result\" class=\"wp-image-329241\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png 539w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result-259x300.png 259w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result-215x249.png 215w\" sizes=\"(max-width: 539px) 100vw, 539px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2:<\/h3>\n\n\n\n<p>We can create a separate module to manage things separately without changing core files. In this way, we can meet the requirements by overriding the PrestaShop PaymentModule.php class validateOrder() function. Also, By using this method you can override the email template.<\/p>\n\n\n\n<p><strong>Ex: <\/strong>modules\/demomodule\/override\/classes\/PaymentModule.php<\/p>\n\n\n\n<p>That&#8217;s all about this blog. We just added a single blog for the information you can add as much as you want.<\/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 support@webkul.com  <\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, We are going to learn how we can add a custom block in order confirmation email templated using PrestaShop. We can achieve this by using the below explained steps. Step 1: We can add custom information by making changes in core files which are explained below. Firstly, We need to make some <a href=\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":387,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[209],"tags":[12424,2065,4126,12384],"class_list":["post-329240","post","type-post","status-publish","format-standard","hentry","category-prestashop","tag-add-custom-block-in-order-confirmation-email","tag-prestashop","tag-prestashop-1-7","tag-prestashop-order-confirmation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Custom block in order confirmation email template using PrestaShop - Webkul Blog<\/title>\n<meta name=\"description\" content=\"In this blog, We are going to learn how we can add a custom block in order confirmation email templated using PrestaShop. We can achieve this by using below explained steps.\" \/>\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-block-in-order-confirmation-email-template-using-prestashop-1-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Custom block in order confirmation email template using PrestaShop - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In this blog, We are going to learn how we can add a custom block in order confirmation email templated using PrestaShop. We can achieve this by using below explained steps.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-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-13T11:56:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-26T10:56:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png\" \/>\n<meta name=\"author\" content=\"Sunny 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=\"Sunny 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\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/\"},\"author\":{\"name\":\"Sunny Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/82afaa5265683f080b52d639e7cdaf67\"},\"headline\":\"Custom block in order confirmation email template using PrestaShop\",\"datePublished\":\"2022-04-13T11:56:18+00:00\",\"dateModified\":\"2022-04-26T10:56:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/\"},\"wordCount\":261,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png\",\"keywords\":[\"add custom block in order confirmation email\",\"prestashop\",\"Prestashop 1.7\",\"Prestashop order confirmation\"],\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/\",\"url\":\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/\",\"name\":\"Custom block in order confirmation email template using PrestaShop - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png\",\"datePublished\":\"2022-04-13T11:56:18+00:00\",\"dateModified\":\"2022-04-26T10:56:38+00:00\",\"description\":\"In this blog, We are going to learn how we can add a custom block in order confirmation email templated using PrestaShop. We can achieve this by using below explained steps.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png\",\"width\":539,\"height\":624,\"caption\":\"Result\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Custom block in order confirmation email template using 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\/82afaa5265683f080b52d639e7cdaf67\",\"name\":\"Sunny Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/71f74f424b1b289dfe7a885325f69bf2ecd11c159d2c3ee19fc5df341650df4c?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\/71f74f424b1b289dfe7a885325f69bf2ecd11c159d2c3ee19fc5df341650df4c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Sunny Kumar\"},\"description\":\"Sunny, a Prestashop virtuoso, crafts innovative eCommerce solutions. His expertise in marketplace development is unparalleled, seamlessly integrating modules. With precision coding, Sunny creates robust online stores, ensuring a seamless user experience. His engineering prowess enhances digital retail, leaving a lasting impact on the Prestashop community.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/sunny-kumar912\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Custom block in order confirmation email template using PrestaShop - Webkul Blog","description":"In this blog, We are going to learn how we can add a custom block in order confirmation email templated using PrestaShop. We can achieve this by using below explained steps.","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-block-in-order-confirmation-email-template-using-prestashop-1-7\/","og_locale":"en_US","og_type":"article","og_title":"Custom block in order confirmation email template using PrestaShop - Webkul Blog","og_description":"In this blog, We are going to learn how we can add a custom block in order confirmation email templated using PrestaShop. We can achieve this by using below explained steps.","og_url":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-04-13T11:56:18+00:00","article_modified_time":"2022-04-26T10:56:38+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png","type":"","width":"","height":""}],"author":"Sunny Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Sunny Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/"},"author":{"name":"Sunny Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/82afaa5265683f080b52d639e7cdaf67"},"headline":"Custom block in order confirmation email template using PrestaShop","datePublished":"2022-04-13T11:56:18+00:00","dateModified":"2022-04-26T10:56:38+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/"},"wordCount":261,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png","keywords":["add custom block in order confirmation email","prestashop","Prestashop 1.7","Prestashop order confirmation"],"articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/","url":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/","name":"Custom block in order confirmation email template using PrestaShop - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png","datePublished":"2022-04-13T11:56:18+00:00","dateModified":"2022-04-26T10:56:38+00:00","description":"In this blog, We are going to learn how we can add a custom block in order confirmation email templated using PrestaShop. We can achieve this by using below explained steps.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/Result.png","width":539,"height":624,"caption":"Result"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/custom-block-in-order-confirmation-email-template-using-prestashop-1-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Custom block in order confirmation email template using 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\/82afaa5265683f080b52d639e7cdaf67","name":"Sunny Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/71f74f424b1b289dfe7a885325f69bf2ecd11c159d2c3ee19fc5df341650df4c?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\/71f74f424b1b289dfe7a885325f69bf2ecd11c159d2c3ee19fc5df341650df4c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Sunny Kumar"},"description":"Sunny, a Prestashop virtuoso, crafts innovative eCommerce solutions. His expertise in marketplace development is unparalleled, seamlessly integrating modules. With precision coding, Sunny creates robust online stores, ensuring a seamless user experience. His engineering prowess enhances digital retail, leaving a lasting impact on the Prestashop community.","url":"https:\/\/webkul.com\/blog\/author\/sunny-kumar912\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/329240","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\/387"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=329240"}],"version-history":[{"count":2,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/329240\/revisions"}],"predecessor-version":[{"id":329286,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/329240\/revisions\/329286"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=329240"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=329240"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=329240"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}