{"id":67114,"date":"2016-12-07T16:11:31","date_gmt":"2016-12-07T16:11:31","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=67114"},"modified":"2016-12-28T08:50:07","modified_gmt":"2016-12-28T08:50:07","slug":"display-multiple-addtocart-button-different-products-page-prestashop-17","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/","title":{"rendered":"Display multiple Add To Cart Button for different products on same page in Prestashop 1.7"},"content":{"rendered":"<p>In E-commerce, One of the common requirements could be to display multiple products with their respective Add to Cart buttons on the same page.<br \/>\nFor example,<br \/>\n1. We want to display a collection page where customer can see store all products with Add To Cart button i.e. Category page.<br \/>\n2. Suppose there is a product that is selling by different sellers and we want to display a page where all seller&#8217;s product will show with their Add To Cart button.<\/p>\n<p><img decoding=\"async\" class=\"alignnone wp-image-67366 size-full\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/products.png\" alt=\"Display multiple Add To Cart Button for different products\" width=\"793\" height=\"348\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/products.png 793w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/products-250x110.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/products-300x132.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/products-768x337.png 768w\" sizes=\"(max-width: 793px) 100vw, 793px\" loading=\"lazy\" \/><\/p>\n<p>So here we will see that how to display multiple Add To Cart button of different products on same page in Prestashop 1.7<\/p>\n<p>For display Add To Cart button with Product, we have two cases &#8211;<br \/>\n<strong>Case 1. Product without Combination &#8211; <\/strong><\/p>\n<p>Suppose there is a standard product that have no combination. So we can add below code in each product html container of our tpl file.<\/p>\n<pre class=\"brush:php\">\/**\r\n* 2010-2016 Webkul.\r\n*\r\n* NOTICE OF LICENSE\r\n*\r\n* All right is reserved,\r\n* Please go through this link for complete license : https:\/\/store.webkul.com\/license.html\r\n*\r\n* DISCLAIMER\r\n*\r\n* Do not edit or add to this file if you wish to upgrade this module to newer\r\n* versions in the future. If you wish to customize this module for your\r\n* needs please refer to https:\/\/store.webkul.com\/customisation-guidelines\/ for more information.\r\n*\r\n*  @author    Webkul IN &lt;support@webkul.com&gt;\r\n*  @copyright 2010-2016 Webkul IN\r\n*  @license   https:\/\/store.webkul.com\/license.html\r\n*\/\r\n\r\n&lt;form action=\"{$link-&gt;getPageLink('cart')}\" method=\"post\"&gt;\r\n   &lt;input type=\"hidden\" name=\"token\" value=\"{$static_token}\"&gt;\r\n   &lt;input type=\"hidden\" name=\"id_product\" value=\"{$product_id}\"&gt;\r\n   &lt;input type=\"hidden\" name=\"id_customization\" value=\"0\"&gt;\r\n   &lt;input type=\"hidden\" name=\"qty\" value=\"1\"&gt;\r\n   &lt;button type=\"submit\" data-button-action=\"add-to-cart\" class=\"btn btn-primary\"&gt;\r\n      &lt;i class=\"material-icons shopping-cart\"&gt;\ue547&lt;\/i&gt;\r\n      {l s='Add to Cart' mod='modulename'}\r\n   &lt;\/button&gt;\r\n&lt;\/form&gt;<\/pre>\n<p>Here you can see a form that have some dynamic variables &#8211;<br \/>\nA. {$link-&gt;getPageLink(&#8216;cart&#8217;)} -&gt; Through this, you can get a cart page link for Form Action<br \/>\nB. {$static_token} -&gt; We must pass a input hidden data of Static Token that can be assigned by controller through this code &#8211; Tools::getToken(false);<\/p>\n<p><strong>Case 2. Product with Combination &#8211;<\/strong><\/p>\n<p>If Product have multiple combination and we want Add To Cart to default combination of that product.<\/p>\n<pre class=\"brush:php\">\/**\r\n* 2010-2016 Webkul.\r\n*\r\n* NOTICE OF LICENSE\r\n*\r\n* All right is reserved,\r\n* Please go through this link for complete license : https:\/\/store.webkul.com\/license.html\r\n*\r\n* DISCLAIMER\r\n*\r\n* Do not edit or add to this file if you wish to upgrade this module to newer\r\n* versions in the future. If you wish to customize this module for your\r\n* needs please refer to https:\/\/store.webkul.com\/customisation-guidelines\/ for more information.\r\n*\r\n*  @author    Webkul IN &lt;support@webkul.com&gt;\r\n*  @copyright 2010-2016 Webkul IN\r\n*  @license   https:\/\/store.webkul.com\/license.html\r\n*\/\r\n\r\n&lt;form action=\"{$link-&gt;getPageLink('cart')}\" method=\"post\"&gt;\r\n   &lt;input type=\"hidden\" name=\"token\" value=\"{$static_token}\"&gt;\r\n   &lt;input type=\"hidden\" name=\"id_product\" value=\"{$product_id}\"&gt;\r\n   &lt;input type=\"hidden\" name=\"id_customization\" value=\"0\"&gt;\r\n\r\n   {if $matchedAttributeData} \r\n     {foreach $matchedAttributeData as $matchedAttribute} \r\n       &lt;input type=\"hidden\" \r\n       data-product-attribute=\"{$matchedAttribute.id_attribute_group}\" \r\n       name=\"group[{$matchedAttribute.id_attribute_group}]\" \r\n       value=\"{$matchedAttribute.id_attribute}\"&gt;\r\n     {\/foreach} \r\n   {\/if} \r\n   &lt;input type=\"hidden\" name=\"qty\" value=\"1\"&gt; \r\n   &lt;button type=\"submit\" data-button-action=\"add-to-cart\" class=\"btn btn-primary\"&gt; \r\n      &lt;i class=\"material-icons shopping-cart\"&gt;\ue547&lt;\/i&gt; \r\n      {l s='Add to Cart' mod='modulename'} \r\n   &lt;\/button&gt; \r\n&lt;\/form&gt;<\/pre>\n<p>Here, $matchedAttributeData is an array\u00a0of default combination&#8217;s attribute group and attribute value<\/p>\n<p><strong>Note :<\/strong> There is no need to add any jQuery file. Prestashop will add to cart the product\u00a0by default from their core.js\u00a0file.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In E-commerce, One of the common requirements could be to display multiple products with their respective Add to Cart buttons on the same page. For example, 1. We want to display a collection page where customer can see store all products with Add To Cart button i.e. Category page. 2. Suppose there is a product <a href=\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":82,"featured_media":67122,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[209],"tags":[],"class_list":["post-67114","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-prestashop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Display multiple Add To Cart Button for different products on same page in Prestashop 1.7<\/title>\n<meta name=\"description\" content=\"1. We want to display a collection page where customer can see store all products with Add To Cart button i.e. Category page. 2. Suppose there is a product that is selling by different sellers and we want to display a page where all seller&#039;s product will show with their Add To Cart button.\" \/>\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\/display-multiple-addtocart-button-different-products-page-prestashop-17\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Display multiple Add To Cart Button for different products on same page in Prestashop 1.7\" \/>\n<meta property=\"og:description\" content=\"1. We want to display a collection page where customer can see store all products with Add To Cart button i.e. Category page. 2. Suppose there is a product that is selling by different sellers and we want to display a page where all seller&#039;s product will show with their Add To Cart button.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/\" \/>\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=\"2016-12-07T16:11:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-12-28T08:50:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.7-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Neeraj\" \/>\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=\"Neeraj\" \/>\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\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/\"},\"author\":{\"name\":\"Neeraj\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/741818aa2ccafbb9688f6108bfd94273\"},\"headline\":\"Display multiple Add To Cart Button for different products on same page in Prestashop 1.7\",\"datePublished\":\"2016-12-07T16:11:31+00:00\",\"dateModified\":\"2016-12-28T08:50:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/\"},\"wordCount\":277,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.7-1.png\",\"articleSection\":[\"prestashop\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/\",\"url\":\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/\",\"name\":\"Display multiple Add To Cart Button for different products on same page in Prestashop 1.7\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.7-1.png\",\"datePublished\":\"2016-12-07T16:11:31+00:00\",\"dateModified\":\"2016-12-28T08:50:07+00:00\",\"description\":\"1. We want to display a collection page where customer can see store all products with Add To Cart button i.e. Category page. 2. Suppose there is a product that is selling by different sellers and we want to display a page where all seller's product will show with their Add To Cart button.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.7-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.7-1.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Display multiple Add To Cart Button for different products on same page 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\/741818aa2ccafbb9688f6108bfd94273\",\"name\":\"Neeraj\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?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\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Neeraj\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/neeraj751\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Display multiple Add To Cart Button for different products on same page in Prestashop 1.7","description":"1. We want to display a collection page where customer can see store all products with Add To Cart button i.e. Category page. 2. Suppose there is a product that is selling by different sellers and we want to display a page where all seller's product will show with their Add To Cart button.","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\/display-multiple-addtocart-button-different-products-page-prestashop-17\/","og_locale":"en_US","og_type":"article","og_title":"Display multiple Add To Cart Button for different products on same page in Prestashop 1.7","og_description":"1. We want to display a collection page where customer can see store all products with Add To Cart button i.e. Category page. 2. Suppose there is a product that is selling by different sellers and we want to display a page where all seller's product will show with their Add To Cart button.","og_url":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-12-07T16:11:31+00:00","article_modified_time":"2016-12-28T08:50:07+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.7-1.png","type":"image\/png"}],"author":"Neeraj","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Neeraj","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/"},"author":{"name":"Neeraj","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/741818aa2ccafbb9688f6108bfd94273"},"headline":"Display multiple Add To Cart Button for different products on same page in Prestashop 1.7","datePublished":"2016-12-07T16:11:31+00:00","dateModified":"2016-12-28T08:50:07+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/"},"wordCount":277,"commentCount":4,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.7-1.png","articleSection":["prestashop"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/","url":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/","name":"Display multiple Add To Cart Button for different products on same page in Prestashop 1.7","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.7-1.png","datePublished":"2016-12-07T16:11:31+00:00","dateModified":"2016-12-28T08:50:07+00:00","description":"1. We want to display a collection page where customer can see store all products with Add To Cart button i.e. Category page. 2. Suppose there is a product that is selling by different sellers and we want to display a page where all seller's product will show with their Add To Cart button.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.7-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/12\/Prestashop-Code-Snippet-1.7-1.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/display-multiple-addtocart-button-different-products-page-prestashop-17\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Display multiple Add To Cart Button for different products on same page 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\/741818aa2ccafbb9688f6108bfd94273","name":"Neeraj","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?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\/f45246e2a6b765786af5b102a8adbc375466c87b477afa9d5c7bf6777d4f2566?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Neeraj"},"url":"https:\/\/webkul.com\/blog\/author\/neeraj751\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/67114","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\/82"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=67114"}],"version-history":[{"count":21,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/67114\/revisions"}],"predecessor-version":[{"id":69631,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/67114\/revisions\/69631"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/67122"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=67114"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=67114"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=67114"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}