{"id":354288,"date":"2022-10-07T14:24:47","date_gmt":"2022-10-07T14:24:47","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=354288"},"modified":"2022-10-07T14:25:00","modified_gmt":"2022-10-07T14:25:00","slug":"save-logs-using-prestashoplogger","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/","title":{"rendered":"Save logs using PrestaShopLogger"},"content":{"rendered":"\n<p>In this blog, we are going to learn how to save logs in the PrestaShop log table.<\/p>\n\n\n\n<p>Let&#8217;s see together how to do that with PrestaShop.<\/p>\n\n\n\n<p>Sometimes, we need to store logs for critical processes such that failure occurs during the process execution.<\/p>\n\n\n\n<p>PrestaShop has its own <strong>PrestaShopLogger<\/strong> class and its function <strong>addLog<\/strong><\/p>\n\n\n\n<p>You can call <strong>addLog<\/strong> function from anywhere in your file.<\/p>\n\n\n\n<p><strong>Function Call<\/strong>:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">PrestaShopLogger::addLog(\n    $message, \n    $severity, \n    $errorCode, \n    $objectType, \n    $objectId, \n    $allowDuplicate, \n    $idEmployee\n)<\/pre>\n\n\n\n<p>Let&#8217;s understand the above function parameters line by line:<\/p>\n\n\n\n<p><strong>$message:<\/strong> It is used for the log message that you want to save during your failure.<\/p>\n\n\n\n<p><strong>$severity:<\/strong> Its default value is 1 (Informative only) and is used for 4 types of severity.<\/p>\n\n\n\n<p>1 for Informative only.<\/p>\n\n\n\n<p>2 for Warning.<\/p>\n\n\n\n<p>3 for Error.<\/p>\n\n\n\n<p>4 for Major issues (crash).<\/p>\n\n\n\n<p><strong>$errorCode: <\/strong>Its default value is NULL and used for the error code.<\/p>\n\n\n\n<p>You can pass the error code that you are getting from any third-party API<\/p>\n\n\n\n<p><strong>$objectType: <\/strong> Its default value is NULL and used for your class object on which you are getting errors\/failures like Product, Cart, Customer, etc.<\/p>\n\n\n\n<p><strong>$objectId:<\/strong> Its default value is NULL and is used for your object id on which you are getting an error\/failure.<\/p>\n\n\n\n<p><strong>$allowDuplicate: <\/strong>Its default value is false and is used if you want to store the same log again in the log table.<\/p>\n\n\n\n<p><strong>$idEmployee:<\/strong> Its default value is NULL and is used to save the logged-in employee ID.<\/p>\n\n\n\n<p>Now we will write two logs using this function.<\/p>\n\n\n\n<p><strong>Product Object log:<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">PrestaShopLogger::addLog(\n    &#039;Test product log&#039;, \/\/ message\n    1, \/\/ severity\n    null, \/\/ error code\n    &#039;Product&#039;, \/\/ object type\n    3, \/\/ id_product\n    false, \/\/ allow duplicate\n    1 \/\/ employee ID\n);<\/pre>\n\n\n\n<p><strong>Cart Object log:<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">PrestaShopLogger::addLog(\n    &#039;Test cart log&#039;, \/\/ message\n    2, \/\/ severity\n    null, \/\/ error code\n    &#039;Cart&#039;, \/\/ object type\n    5, \/\/ id_product\n    false, \/\/ allow duplicate\n    1 \/\/ employee ID\n);<\/pre>\n\n\n\n<p>You can see your added logs in PrestaShop Back-office:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs-%E2%80%A2-PS1787-1200x597.png\" alt=\"Logs-\u2022-PS1787\" class=\"wp-image-354316\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Also, this function checks your defined minimum severity level to send a log email on your defined email id. <\/p>\n\n\n\n<p>If you define the minimum severity level as 4 (Major issue) then you will get emails for all 4 types of severity (Informative only, Warning,  Error, and Major issue)<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"539\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-1200x539.png\" alt=\"Logs_email\" class=\"wp-image-354318\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-1200x539.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-300x135.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-250x112.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-768x345.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-604x270.png 604w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email.png 1279w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>That\u2019s all about this blog. Hope it will help you.<\/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>We would be happy to help.<\/p>\n\n\n\n<p>Also, you can explore our\u00a0<a href=\"https:\/\/webkul.com\/prestashop-development\/\">PrestaShop Development Services<\/a>\u00a0&amp; a large range of quality\u00a0<a href=\"https:\/\/store.webkul.com\/PrestaShop-Extensions.html\">PrestaShop Modules<\/a>.<\/p>\n\n\n\n<p>For any doubt contact us at\u00a0<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 save logs in the PrestaShop log table. Let&#8217;s see together how to do that with PrestaShop. Sometimes, we need to store logs for critical processes such that failure occurs during the process execution. PrestaShop has its own PrestaShopLogger class and its function addLog You can <a href=\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":416,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[209,1],"tags":[188,15,11117,2065],"class_list":["post-354288","post","type-post","status-publish","format-standard","hentry","category-prestashop","category-uncategorized","tag-error","tag-error_reporting","tag-errors","tag-prestashop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Save logs using PrestaShopLogger<\/title>\n<meta name=\"description\" content=\"Save logs using PrestaShopLogger\" \/>\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\/save-logs-using-prestashoplogger\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Save logs using PrestaShopLogger\" \/>\n<meta property=\"og:description\" content=\"Save logs using PrestaShopLogger\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/\" \/>\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-10-07T14:24:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-07T14:25:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-1200x539.png\" \/>\n<meta name=\"author\" content=\"Gajendra Singh\" \/>\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=\"Gajendra Singh\" \/>\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\/save-logs-using-prestashoplogger\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/\"},\"author\":{\"name\":\"Gajendra Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/ba72ea261f883808a566a3ab8b63dede\"},\"headline\":\"Save logs using PrestaShopLogger\",\"datePublished\":\"2022-10-07T14:24:47+00:00\",\"dateModified\":\"2022-10-07T14:25:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/\"},\"wordCount\":361,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-1200x539.png\",\"keywords\":[\"error\",\"error_reporting\",\"errors\",\"prestashop\"],\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/\",\"url\":\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/\",\"name\":\"Save logs using PrestaShopLogger\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-1200x539.png\",\"datePublished\":\"2022-10-07T14:24:47+00:00\",\"dateModified\":\"2022-10-07T14:25:00+00:00\",\"description\":\"Save logs using PrestaShopLogger\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email.png\",\"width\":1279,\"height\":575,\"caption\":\"Logs_email\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Save logs using PrestaShopLogger\"}]},{\"@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\/ba72ea261f883808a566a3ab8b63dede\",\"name\":\"Gajendra Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9d864b4124944a25bce60168e4d9520c03a18cdca40483dfbf0d9e46d2f0d32c?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\/9d864b4124944a25bce60168e4d9520c03a18cdca40483dfbf0d9e46d2f0d32c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Gajendra Singh\"},\"description\":\"Gajendra Singh, a PrestaShop Software Engineer, excels in Mobile App and Custom Extension Development. A tech-savvy expert in Docker and POS, he creates innovative solutions. Gajendra's skills ensure a seamless PrestaShop experience, catering to diverse needs.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/gajendra-singh681\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Save logs using PrestaShopLogger","description":"Save logs using PrestaShopLogger","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\/save-logs-using-prestashoplogger\/","og_locale":"en_US","og_type":"article","og_title":"Save logs using PrestaShopLogger","og_description":"Save logs using PrestaShopLogger","og_url":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-10-07T14:24:47+00:00","article_modified_time":"2022-10-07T14:25:00+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-1200x539.png","type":"","width":"","height":""}],"author":"Gajendra Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Gajendra Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/"},"author":{"name":"Gajendra Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/ba72ea261f883808a566a3ab8b63dede"},"headline":"Save logs using PrestaShopLogger","datePublished":"2022-10-07T14:24:47+00:00","dateModified":"2022-10-07T14:25:00+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/"},"wordCount":361,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-1200x539.png","keywords":["error","error_reporting","errors","prestashop"],"articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/","url":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/","name":"Save logs using PrestaShopLogger","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email-1200x539.png","datePublished":"2022-10-07T14:24:47+00:00","dateModified":"2022-10-07T14:25:00+00:00","description":"Save logs using PrestaShopLogger","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/10\/Logs_email.png","width":1279,"height":575,"caption":"Logs_email"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/save-logs-using-prestashoplogger\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Save logs using PrestaShopLogger"}]},{"@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\/ba72ea261f883808a566a3ab8b63dede","name":"Gajendra Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9d864b4124944a25bce60168e4d9520c03a18cdca40483dfbf0d9e46d2f0d32c?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\/9d864b4124944a25bce60168e4d9520c03a18cdca40483dfbf0d9e46d2f0d32c?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Gajendra Singh"},"description":"Gajendra Singh, a PrestaShop Software Engineer, excels in Mobile App and Custom Extension Development. A tech-savvy expert in Docker and POS, he creates innovative solutions. Gajendra's skills ensure a seamless PrestaShop experience, catering to diverse needs.","url":"https:\/\/webkul.com\/blog\/author\/gajendra-singh681\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/354288","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\/416"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=354288"}],"version-history":[{"count":21,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/354288\/revisions"}],"predecessor-version":[{"id":354331,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/354288\/revisions\/354331"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=354288"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=354288"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=354288"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}