{"id":433081,"date":"2024-04-15T12:57:07","date_gmt":"2024-04-15T12:57:07","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=433081"},"modified":"2024-04-15T13:39:21","modified_gmt":"2024-04-15T13:39:21","slug":"email-theme-in-prestashop-using-module","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/","title":{"rendered":"Email theme in PrestaShop using module"},"content":{"rendered":"\n<p>In this blog, we are going to learn how to add email theme in PrestaShop using module.<\/p>\n\n\n\n<p>In PrestaShop you can add new theme folder directly in mail\/themes, but this can&#8217;t be install\/uninstall quickly as module.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"900\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp\" alt=\"Email theme in PrestaShop using module\" class=\"wp-image-433760\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme-300x225.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme-250x188.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme-768x576.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Firstly you have to create your own templates for mails as it is given in <strong>mails\/theme\/<\/strong> and keep it in your module.<br>Follow the same folder structure as given below<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\u251c\u2500\u2500 modules\n    \u251c\u2500\u2500 yourmodule\n        \u251c\u2500\u2500 mails\n        \u2502     \u2514\u2500\u2500 themes\n        |           \u2514\u2500\u2500wk_modern\n        |                 \u251cassets---contains all assets going to use\n        |                 \u251ccomponents---contains header, footer, layout\n        |                 |             twig files\n        |                 \u251ccore---contains all the mail templates available\n        |                 |       in PS as twig files\n        |                 \u2514modules --- contains all the modules related\n        |                              mails available in PS modules\n        |\n        |\n        \u2514\u2500\u2500 yourmodule.php<\/pre>\n\n\n\n<p>Here, we are going to use the hook <strong>actionListMailTheme<\/strong> which list new mail theme directly from module. Please follow the below code for module main file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nuse PrestaShop\\PrestaShop\\Core\\MailTemplate\\Layout\\Layout;\nuse PrestaShop\\PrestaShop\\Core\\MailTemplate\\ThemeCatalogInterface;\nuse PrestaShop\\PrestaShop\\Core\\MailTemplate\\ThemeCollectionInterface;\nuse PrestaShop\\PrestaShop\\Core\\MailTemplate\\ThemeInterface;\nuse PrestaShop\\PrestaShop\\Core\\MailTemplate\\FolderThemeScanner;\n\nclass WkModern extends Module\n{\n    public function __construct()\n    {\n        $this-&gt;name = &#039;WkModern&#039;;\n        $this-&gt;tab = &#039;theme&#039;;\n        $this-&gt;version = &#039;1.0.0&#039;;\n        $this-&gt;author = &#039;Author&#039;;\n        $this-&gt;need_instance = 0;\n        parent::__construct();\n        $this-&gt;displayName = $this-&gt;l(&#039;Modern Email Theme&#039;);\n        $this-&gt;description = $this-&gt;l(&#039;Email theme module to modifiy emails.&#039;);\n        $this-&gt;ps_versions_compliancy = array(&#039;min&#039; =&gt; &#039;1.7.1.0&#039;, &#039;max&#039; =&gt; _PS_VERSION_);        \n    }\n\n    public function install()\n    {\n        return parent::install()\n            &amp;&amp; $this-&gt;registerHook(ThemeCatalogInterface::LIST_MAIL_THEMES_HOOK);\n    }\n\n    public function uninstall()\n    {\n        return parent::uninstall()\n            &amp;&amp; $this-&gt;unregisterHook(ThemeCatalogInterface::LIST_MAIL_THEMES_HOOK);\n    }\n\n    public function enable($force_all = false)\n    {\n        return parent::enable($force_all)\n            &amp;&amp; $this-&gt;registerHook(ThemeCatalogInterface::LIST_MAIL_THEMES_HOOK);\n    }\n\n    public function disable($force_all = false)\n    {\n        return parent::disable($force_all)\n            &amp;&amp; $this-&gt;unregisterHook(ThemeCatalogInterface::LIST_MAIL_THEMES_HOOK);\n    }\n   \n    public function hookActionListMailThemes(array $hookParams)\n    {\n        if (!isset($hookParams&#091;&#039;mailThemes&#039;])) {\n            return;\n        }\n        \/** @var ThemeCollectionInterface $themes *\/\n        $themes = $hookParams&#091;&#039;mailThemes&#039;];\n        $scanner = new FolderThemeScanner(__DIR__);\n        $wk_modern = $scanner-&gt;scan(__DIR__.&#039;\/mails\/themes\/wk_modern&#039;);\n        if (null !== $wk_modern &amp;&amp; $wk_modern-&gt;getLayouts()-&gt;count() &gt; 0) {\n            $themes-&gt;add($wk_modern);\n        }\n    }\n}<\/pre>\n\n\n\n<p>Your theme is listed in \u201cDesign &gt; Email Theme\u201d page and preview the wk_modern theme, same as default PrestaShop email theme is shown. You can click on the view button and see all the available email templates in that particular theme.<\/p>\n\n\n\n<p>In this example we have created an email theme with name <strong>wk_modern<\/strong> as shown in attached image below .<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"900\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/prev-theme-wk-modern.webp\" alt=\"Email theme in PrestaShop using module\" class=\"wp-image-433764\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/prev-theme-wk-modern.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/prev-theme-wk-modern-300x225.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/prev-theme-wk-modern-250x188.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/prev-theme-wk-modern-768x576.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>That\u2019s all about Email theme in PrestaShop using module. Hope it will help you.<\/p>\n\n\n\n<p>Concluding this blog, I hope it proves helpful to you. If you encounter any issues or have doubts about the aforementioned process, please don\u2019t hesitate to contact us through the comment section.<\/p>\n\n\n\n<p>Also, you can explore our&nbsp;<a href=\"https:\/\/webkul.com\/prestashop-development\/\">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;support@webkul.com<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we are going to learn how to add email theme in PrestaShop using module. In PrestaShop you can add new theme folder directly in mail\/themes, but this can&#8217;t be install\/uninstall quickly as module. Firstly you have to create your own templates for mails as it is given in mails\/theme\/ and keep it <a href=\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/\">[&#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":[41,209],"tags":[14968,2065],"class_list":["post-433081","post","type-post","status-publish","format-standard","hentry","category-module","category-prestashop","tag-dev","tag-prestashop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Email theme in PrestaShop using module - Webkul Blog<\/title>\n<meta name=\"description\" content=\"How to create module to load Email theme from module in PrestaShop by following given Theme Catalog Interface, Theme Collection Interface..\" \/>\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\/email-theme-in-prestashop-using-module\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Email theme in PrestaShop using module - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"How to create module to load Email theme from module in PrestaShop by following given Theme Catalog Interface, Theme Collection Interface..\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/\" \/>\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=\"2024-04-15T12:57:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-15T13:39:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp\" \/>\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\/email-theme-in-prestashop-using-module\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/\"},\"author\":{\"name\":\"Vineet Kr. Gupta\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/bb871a3e8dd81b2b0a1690f195da6208\"},\"headline\":\"Email theme in PrestaShop using module\",\"datePublished\":\"2024-04-15T12:57:07+00:00\",\"dateModified\":\"2024-04-15T13:39:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/\"},\"wordCount\":239,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp\",\"keywords\":[\"dev\",\"prestashop\"],\"articleSection\":[\"module\",\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/\",\"url\":\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/\",\"name\":\"Email theme in PrestaShop using module - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp\",\"datePublished\":\"2024-04-15T12:57:07+00:00\",\"dateModified\":\"2024-04-15T13:39:21+00:00\",\"description\":\"How to create module to load Email theme from module in PrestaShop by following given Theme Catalog Interface, Theme Collection Interface..\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp\",\"width\":1200,\"height\":900},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Email theme in PrestaShop using module\"}]},{\"@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":"Email theme in PrestaShop using module - Webkul Blog","description":"How to create module to load Email theme from module in PrestaShop by following given Theme Catalog Interface, Theme Collection Interface..","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\/email-theme-in-prestashop-using-module\/","og_locale":"en_US","og_type":"article","og_title":"Email theme in PrestaShop using module - Webkul Blog","og_description":"How to create module to load Email theme from module in PrestaShop by following given Theme Catalog Interface, Theme Collection Interface..","og_url":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2024-04-15T12:57:07+00:00","article_modified_time":"2024-04-15T13:39:21+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp","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\/email-theme-in-prestashop-using-module\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/"},"author":{"name":"Vineet Kr. Gupta","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/bb871a3e8dd81b2b0a1690f195da6208"},"headline":"Email theme in PrestaShop using module","datePublished":"2024-04-15T12:57:07+00:00","dateModified":"2024-04-15T13:39:21+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/"},"wordCount":239,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp","keywords":["dev","prestashop"],"articleSection":["module","prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/","url":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/","name":"Email theme in PrestaShop using module - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp","datePublished":"2024-04-15T12:57:07+00:00","dateModified":"2024-04-15T13:39:21+00:00","description":"How to create module to load Email theme from module in PrestaShop by following given Theme Catalog Interface, Theme Collection Interface..","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/04\/email-theme.webp","width":1200,"height":900},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/email-theme-in-prestashop-using-module\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Email theme in PrestaShop using module"}]},{"@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\/433081","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=433081"}],"version-history":[{"count":17,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/433081\/revisions"}],"predecessor-version":[{"id":433767,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/433081\/revisions\/433767"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=433081"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=433081"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=433081"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}