{"id":350641,"date":"2022-09-02T14:31:33","date_gmt":"2022-09-02T14:31:33","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=350641"},"modified":"2022-09-02T14:31:45","modified_gmt":"2022-09-02T14:31:45","slug":"how-to-add-alter-existing-kpi-row-in-prestashop-1-7","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/","title":{"rendered":"How to add\/alter existing KPI row in PrestaShop 1.7"},"content":{"rendered":"\n<p>In this blog, we will learn how to add or modify existing KPI row information. In the last blog, we learned about how to add a custom KPI row in our module. You can check this blog <a href=\"https:\/\/webkul.com\/blog\/how-to-add-kpi-block-in-the-prestashop-module\/\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>.<\/p>\n\n\n\n<p>In PrestaShop version 1.7.6, a new hook &#8220;<code>hookAction&lt;KPIRowID&gt;KpiRowModifier<\/code>&#8221; has been introduced. This hook allows you to alter the list of an existing KPI row of the Back Office. This hook is dynamic and is dispatched after the KPI row identifier.<\/p>\n\n\n\n<p>So, let&#8217;s alter the &#8220;Orders&#8221; section KPI row information. To alter any existing KPI information, we have to create our own KPI. PrestaShop provides an interface &#8220;<code>KpiInterface<\/code>&#8221; class and by implementing this, we can create our own KPI block:<\/p>\n\n\n\n<p>ie:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nnamespace Prestashop\\WkAlterKpi\\Kpi;\n\nuse Context;\nuse HelperKpi;\nuse PrestaShop\\PrestaShop\\Core\\Kpi\\KpiInterface;\n\n\/**\n * @internal\n *\/\nfinal class WkCustomKpi implements KpiInterface\n{\n    \/**\n     * {@inheritdoc}\n     *\/\n    public function render()\n    {\n        $translator = Context::getContext()-&gt;getTranslator();\n\n        $helper = new HelperKpi();\n        $helper-&gt;id = &#039;box-total-user&#039;;\n        $helper-&gt;icon = &#039;account_box&#039;;\n        $helper-&gt;color = &#039;color1&#039;;\n        $helper-&gt;title = $translator-&gt;trans(&#039;Total users&#039;, &#091;], &#039;Admin.Global&#039;);\n        $helper-&gt;subtitle = $translator-&gt;trans(&#039;30 days&#039;, &#091;], &#039;Admin.Global&#039;);\n        $helper-&gt;value = 20;\n        return $helper-&gt;generate();\n    }\n}<\/pre>\n\n\n\n<p>Now, to alter the &#8220;Orders&#8221; KPI row, we have to register the &#8220;<code>actionOrdersKpiRowModifier<\/code>&#8221; hook in our module:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$this-&gt;registerHook(&#039;actionOrdersKpiRowModifier&#039;);<\/pre>\n\n\n\n<p>After registering this hook, we will add the below code in this hook method:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">public function hookActionOrdersKpiRowModifier($params)\n{\n    $params&#091;&#039;kpis&#039;]&#091;0] = new WkCustomKpi();\n}<\/pre>\n\n\n\n<p>Add the below line on the top of the code in order to use &#8220;<code>WkCustomKpi<\/code>&#8221; class:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">use Prestashop\\WkAlterKpi\\Kpi\\WkCustomKpi;<\/pre>\n\n\n\n<p>Now, if you access the order tab in the back office, the KPI row has been modified:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1056\" height=\"223\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.png\" alt=\"image-42\" class=\"wp-image-350644\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.png 1056w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42-300x63.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42-250x53.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42-768x162.png 768w\" sizes=\"(max-width: 1056px) 100vw, 1056px\" loading=\"lazy\" \/><figcaption>Alter existing KPI info<\/figcaption><\/figure>\n\n\n\n<p>We can also add new info to the existing KPI. For example, let&#8217;s add new info in the &#8220;Translation&#8221; tab because this tab KPIs block contains only 3 pieces of information so we will new info. To do this, we will register the &#8220;<code>actionTranslationsKpiRowModifier<\/code>&#8221; hook and add the below code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">public function hookActionTranslationsKpiRowModifier($params)\n{\n    $params&#091;&#039;kpis&#039;]&#091;] = new WkCustomKpi();\n}<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1055\" height=\"231\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-43.png\" alt=\"image-43\" class=\"wp-image-350645\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-43.png 1055w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-43-300x66.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-43-250x55.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-43-768x168.png 768w\" sizes=\"(max-width: 1055px) 100vw, 1055px\" loading=\"lazy\" \/><figcaption>Added new KPI info<\/figcaption><\/figure>\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&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;<a href=\"mailto:support@webkul.com\">support@webkul.com<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we will learn how to add or modify existing KPI row information. In the last blog, we learned about how to add a custom KPI row in our module. You can check this blog here. In PrestaShop version 1.7.6, a new hook &#8220;hookAction&lt;KPIRowID&gt;KpiRowModifier&#8221; has been introduced. This hook allows you to alter <a href=\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-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":[209],"tags":[2065],"class_list":["post-350641","post","type-post","status-publish","format-standard","hentry","category-prestashop","tag-prestashop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to add\/alter existing KPI row in PrestaShop 1.7 - Webkul Blog<\/title>\n<meta name=\"description\" content=\"In this blog, we have explain how to add\/alter the existing KPI row information. We have explained this by creating a simple KPI class.\" \/>\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-add-alter-existing-kpi-row-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=\"How to add\/alter existing KPI row in PrestaShop 1.7 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In this blog, we have explain how to add\/alter the existing KPI row information. We have explained this by creating a simple KPI class.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-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-09-02T14:31:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-02T14:31:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.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=\"3 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-add-alter-existing-kpi-row-in-prestashop-1-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/\"},\"author\":{\"name\":\"Ajeet Chauhan\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7eee8f48857441660231d6a643103357\"},\"headline\":\"How to add\/alter existing KPI row in PrestaShop 1.7\",\"datePublished\":\"2022-09-02T14:31:33+00:00\",\"dateModified\":\"2022-09-02T14:31:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/\"},\"wordCount\":300,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.png\",\"keywords\":[\"prestashop\"],\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/\",\"name\":\"How to add\/alter existing KPI row in PrestaShop 1.7 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.png\",\"datePublished\":\"2022-09-02T14:31:33+00:00\",\"dateModified\":\"2022-09-02T14:31:45+00:00\",\"description\":\"In this blog, we have explain how to add\/alter the existing KPI row information. We have explained this by creating a simple KPI class.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.png\",\"width\":1056,\"height\":223,\"caption\":\"image-42\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add\/alter existing KPI row 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":"How to add\/alter existing KPI row in PrestaShop 1.7 - Webkul Blog","description":"In this blog, we have explain how to add\/alter the existing KPI row information. We have explained this by creating a simple KPI class.","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-add-alter-existing-kpi-row-in-prestashop-1-7\/","og_locale":"en_US","og_type":"article","og_title":"How to add\/alter existing KPI row in PrestaShop 1.7 - Webkul Blog","og_description":"In this blog, we have explain how to add\/alter the existing KPI row information. We have explained this by creating a simple KPI class.","og_url":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-09-02T14:31:33+00:00","article_modified_time":"2022-09-02T14:31:45+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/"},"author":{"name":"Ajeet Chauhan","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7eee8f48857441660231d6a643103357"},"headline":"How to add\/alter existing KPI row in PrestaShop 1.7","datePublished":"2022-09-02T14:31:33+00:00","dateModified":"2022-09-02T14:31:45+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/"},"wordCount":300,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.png","keywords":["prestashop"],"articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/","url":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/","name":"How to add\/alter existing KPI row in PrestaShop 1.7 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.png","datePublished":"2022-09-02T14:31:33+00:00","dateModified":"2022-09-02T14:31:45+00:00","description":"In this blog, we have explain how to add\/alter the existing KPI row information. We have explained this by creating a simple KPI class.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/09\/image-42.png","width":1056,"height":223,"caption":"image-42"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-add-alter-existing-kpi-row-in-prestashop-1-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to add\/alter existing KPI row 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\/350641","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=350641"}],"version-history":[{"count":7,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/350641\/revisions"}],"predecessor-version":[{"id":350653,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/350641\/revisions\/350653"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=350641"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=350641"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=350641"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}