{"id":63145,"date":"2016-11-02T14:37:56","date_gmt":"2016-11-02T14:37:56","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=63145"},"modified":"2023-03-27T10:09:57","modified_gmt":"2023-03-27T10:09:57","slug":"remove-payment-method-based-product-cart","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/","title":{"rendered":"Remove payment method based on product into the cart"},"content":{"rendered":"\n<p>Remove &nbsp;payment method based on specific product if exist into the cart, To give appropriate payment methods to the customer by which they can proceed their cart.<\/p>\n\n\n\n<p>In this post, i will tell you how you can stop the payment methods not be available when customer comes to proceed their cart by choosing the appropriate payment methods.<\/p>\n\n\n\n<p>Many times admin want to remove payment methods like&nbsp;bankwire\/cheque or paypal payment even they want these method will only be visible for a specific product not for all products, so we can do this task by writing few line of code.<\/p>\n\n\n\n<p><strong>Hook.php &#8211;<\/strong> Be careful when writing anything in this file, this is the file where all your <a href=\"https:\/\/store.webkul.com\/PrestaShop-Extensions.html\">prestashop modules<\/a> pass. So we will override this class file to remove payment methods.<\/p>\n\n\n\n<p>Path for this class &#8211; classes\/Hook.php<\/p>\n\n\n\n<p>Now jump to function &nbsp;<strong>getHookModuleExecList()&nbsp;<\/strong>in Hook.php, we have to override this function to perform the restriction on payment methods based on products.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Sample code<\/strong> &#8211; How to write code to remove payment module not to be available when customer comes to pay.<\/h2>\n\n\n\n<pre class=\"wp-block-preformatted\">class Hook extends HookCore\n{\n\t\/*\n    * module: preorder\n    * date: 2016-11-02 19:17:19\n    * version: 2.0.0\n    *\/\n    public static function getHookModuleExecList($hook_name = null)\n\t{\n\t\t$list = parent::getHookModuleExecList($hook_name);\n\t\tif ($hook_name == 'displayPayment') {\n\t\t\tforeach ($list as $key =&gt; $payment) {\n\t\t\t\tif ($payment['id_module'] == 3) {\n\t\t\t\t\tunset($list[$key]);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $list;\n\t}\n}<\/pre>\n\n\n\n<p>See the code, we have called parent of <strong>getHookModyleExecList()<\/strong>&nbsp;function and store of the modules array which are going to list on prestashop.<br>Now we have hook display name, module ID, hook Id that will not be changed, so we can check using &nbsp;<strong>displayPayment<\/strong>&nbsp;(Hook that display payment modules) string as well. If ($hook_name == &#8216;displayName&#8217;) {} In this condition only payment modules list will be available&nbsp;so, you can unset any payment module which you want to remove. As i have removed&nbsp;bankwire payment module which has ID 3,<\/p>\n\n\n\n<p>So you can see in the below when customer comes&nbsp;to pay, they won&#8217;t be able to see bankwire payment module.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/1-1-1.png\"><img decoding=\"async\" width=\"1287\" height=\"571\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/1-1-1.png\" alt=\"Remove Payment\" class=\"wp-image-63564\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/1-1-1.png 1287w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/1-1-1-250x111.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/1-1-1-300x133.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/1-1-1-768x341.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/1-1-1-1200x532.png 1200w\" sizes=\"(max-width: 1287px) 100vw, 1287px\" loading=\"lazy\" \/><\/a><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Remove &nbsp;payment method based on specific product if exist into the cart, To give appropriate payment methods to the customer by which they can proceed their cart. In this post, i will tell you how you can stop the payment methods not be available when customer comes to proceed their cart by choosing the appropriate <a href=\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":81,"featured_media":63571,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[3917,3918,1042,2065,580,3916],"class_list":["post-63145","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-based","tag-condition","tag-payment","tag-prestashop","tag-product","tag-restriction"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Remove payment method based on product into the cart - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Remove payment method based on specific product if exist into the cart, To give appropriate payment methods to the customer by which they can proceed.......\" \/>\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\/remove-payment-method-based-product-cart\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Remove payment method based on product into the cart - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Remove payment method based on specific product if exist into the cart, To give appropriate payment methods to the customer by which they can proceed.......\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/\" \/>\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-11-02T14:37:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-27T10:09:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-3.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=\"Deepak\" \/>\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=\"Deepak\" \/>\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\/remove-payment-method-based-product-cart\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/\"},\"author\":{\"name\":\"Deepak\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/06a72f75a5d335e9751297fb9839ef68\"},\"headline\":\"Remove payment method based on product into the cart\",\"datePublished\":\"2016-11-02T14:37:56+00:00\",\"dateModified\":\"2023-03-27T10:09:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/\"},\"wordCount\":312,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-3.png\",\"keywords\":[\"based\",\"condition\",\"payment\",\"prestashop\",\"product\",\"restriction\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/\",\"url\":\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/\",\"name\":\"Remove payment method based on product into the cart - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-3.png\",\"datePublished\":\"2016-11-02T14:37:56+00:00\",\"dateModified\":\"2023-03-27T10:09:57+00:00\",\"description\":\"Remove payment method based on specific product if exist into the cart, To give appropriate payment methods to the customer by which they can proceed.......\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-3.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-3.png\",\"width\":825,\"height\":260,\"caption\":\"ajax call\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Remove payment method based on product into the cart\"}]},{\"@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\/06a72f75a5d335e9751297fb9839ef68\",\"name\":\"Deepak\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/067dbf448c072fa8c6cb14b2e26949dc29c46c534e586b915b56f39c95cb2b95?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\/067dbf448c072fa8c6cb14b2e26949dc29c46c534e586b915b56f39c95cb2b95?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Deepak\"},\"description\":\"I love the web. Coding is my passion and love the learn new technologies.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/deepak037\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Remove payment method based on product into the cart - Webkul Blog","description":"Remove payment method based on specific product if exist into the cart, To give appropriate payment methods to the customer by which they can proceed.......","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\/remove-payment-method-based-product-cart\/","og_locale":"en_US","og_type":"article","og_title":"Remove payment method based on product into the cart - Webkul Blog","og_description":"Remove payment method based on specific product if exist into the cart, To give appropriate payment methods to the customer by which they can proceed.......","og_url":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-11-02T14:37:56+00:00","article_modified_time":"2023-03-27T10:09:57+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-3.png","type":"image\/png"}],"author":"Deepak","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Deepak","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/"},"author":{"name":"Deepak","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/06a72f75a5d335e9751297fb9839ef68"},"headline":"Remove payment method based on product into the cart","datePublished":"2016-11-02T14:37:56+00:00","dateModified":"2023-03-27T10:09:57+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/"},"wordCount":312,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-3.png","keywords":["based","condition","payment","prestashop","product","restriction"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/","url":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/","name":"Remove payment method based on product into the cart - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-3.png","datePublished":"2016-11-02T14:37:56+00:00","dateModified":"2023-03-27T10:09:57+00:00","description":"Remove payment method based on specific product if exist into the cart, To give appropriate payment methods to the customer by which they can proceed.......","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-3.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/11\/Prestashop-Code-Snippet-3.png","width":825,"height":260,"caption":"ajax call"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/remove-payment-method-based-product-cart\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Remove payment method based on product into the cart"}]},{"@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\/06a72f75a5d335e9751297fb9839ef68","name":"Deepak","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/067dbf448c072fa8c6cb14b2e26949dc29c46c534e586b915b56f39c95cb2b95?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\/067dbf448c072fa8c6cb14b2e26949dc29c46c534e586b915b56f39c95cb2b95?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Deepak"},"description":"I love the web. Coding is my passion and love the learn new technologies.","url":"https:\/\/webkul.com\/blog\/author\/deepak037\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/63145","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\/81"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=63145"}],"version-history":[{"count":23,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/63145\/revisions"}],"predecessor-version":[{"id":374076,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/63145\/revisions\/374076"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/63571"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=63145"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=63145"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=63145"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}