{"id":6958,"date":"2017-08-16T00:00:00","date_gmt":"2017-08-15T16:00:00","guid":{"rendered":"https:\/\/www.fraudlabspro.com\/resources2\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/"},"modified":"2026-04-02T18:32:42","modified_gmt":"2026-04-02T10:32:42","password":"","slug":"how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway","status":"publish","type":"docs","link":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/","title":{"rendered":"How to enable Credit Card Validation in WooCommerce for Authorize.Net CIM Gateway"},"content":{"rendered":"\n<p><p style=\"color: #7d5a29;background-color: #fcefdc;padding:15px;\"><strong>Notice<\/strong>: By using the latest <strong>FraudLabs Pro for WooCommerce<\/strong> and <strong>WooCommerce Authorize.Net CIM Payment Gateway<\/strong> plugins, the credit card details will be captured automatically without following the steps below.<\/p><\/p>\n\n\n<p>Credit card information is highly sensitive data and should be protected from unauthorized access. Due to this reason, it is understandable that neither the payment gateway plugin nor WooCommerce is going to expose this information to a 3rd party integrator, like us, to read and process, even for a very good reason &#8211; to perform the fraud validation. This is why you might have noticed an <strong>N\/A<\/strong> value for all credit card related fields in our fraud validation results.<\/p>\n<p>Credit card information is one of the key elements in fraud detection. Obviously, you would want the best fraud protection possible, therefore one might wonder, is there a workaround to this limitation? The answer is yes. It involves some minor editing to the payment gateway file, and the modification is payment gateway specific. In this tutorial, we will guide you with step-by-step instructions to edit the <strong>Authorize.Net CIM <\/strong>payment gateway to enable the credit card validation. Below are the modifications to be done:<\/p>\n<pre>$(\"body\").on( \"change\", \"input[id=wc-authorize-net-cim-credit-card-account-number]\", function() {\n    var cc = $('input[id=wc-authorize-net-cim-credit-card-account-number]').val();\n    var flp_ccbin = cc.substring(0,7);\n    flp_ccbin = flp_ccbin.replace(\/s+\/g, '');\n\n    var flp_cchash = cc.replace(\/s+\/g, '');\n\n    var getUrl = window.location;\n    var baseUrl = getUrl .protocol + \"\/\/\" + getUrl.host + \"\/\" + getUrl.pathname.split('\/')[1];\n    $.post(baseUrl + '\/wp-content\/plugins\/fraudlabs-pro-for-woocommerce\/flp_cc.php', {flp_cc_bin: flp_ccbin, flp_cc_hash: flp_cchash});\n});<\/pre>\n<p>What we did here:<\/p>\n<ul>\n<li>Read the credit number from the user input<\/li>\n<li>Extract the 6 digits Credit Card BIN<\/li>\n<li>Hashed the entire credit card number using SHA-1(refer flp_cc.php)<\/li>\n<li>Save them into session object for later validation (refer flp_cc.php)\n<div class=\"note note-info\"><\/div>\n<div class=\"note note-info\"><em><strong>Note<\/strong>: The flp_cc.php file is located in the fraudlabs-pro-for-woocommerce plugin folder.<\/em><\/div>\n<\/li>\n<\/ul>\n<p>The above logic will convert the plain credit card number into an irreversible hashed string for the fraud validation. Neither us nor the 3rd party will be able to read the plain credit card number from the hashed string. Below are the steps to enable the fraud validation for the payment gateway.<\/p>\n<p><em><strong>Note<\/strong>: The following guide is based on <strong>WooCommerce Authorize.Net CIM Gateway<\/strong> version 2.6.1 with <strong>WordPress<\/strong> version 4.8.1.<\/em><\/p>\n<ol>\n<li>Get the <strong>WooCommerce Authorize.Net CIM Gateway<\/strong> at <a href=\"https:\/\/woocommerce.com\/products\/authorize-net-cim\/\">https:\/\/woocommerce.com\/products\/authorize-net-cim\/<\/a>.<\/li>\n<li>Go to the <strong>Settings<\/strong> page of <strong>Authorize.Net CIM<\/strong> and disable the \u00e2\u20ac\u0153<strong>Tokenization<\/strong>\u00e2\u20ac\u009d option.\n<div class=\"note note-info\"><\/div>\n<div class=\"note note-info\"><em><strong>Note<\/strong>: This guide is not workable for this option so it must be disabled.<\/em><\/div>\n<p align=\"center\"><a href=\"https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-571 size-full\" src=\"https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1.png\" alt=\"Authorize.Net CIM Settings Page\" width=\"875\" height=\"596\" srcset=\"https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1.png 875w, https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1-300x204.png 300w, https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1-768x523.png 768w, https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1-50x34.png 50w, https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1-600x409.png 600w, https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1-320x218.png 320w\" sizes=\"auto, (max-width: 875px) 100vw, 875px\" \/><\/a><\/p>\n<\/li>\n<li>Save the settings.<\/li>\n<li>Edit the <strong>wc-authorize-net-cim.min.js<\/strong> file which is located in the <strong><i>wordpress\/wp-content\/plugins\/woocommerce-gateway-authorize-net-cim\/assets\/js\/frontend\/<\/i><\/strong> folder.<\/li>\n<li>Copy the code provided above and paste it 1 line before <code>window.wc_authorize_net_cim_credit_card_accept_js_handler = new WC_Authorize_Net_CIM_Credit_Card_Accept_JS_Handler();<\/code><\/li>\n<li>Done.\n<div class=\"note note-info\"><em>\u00c2\u00a0<\/em><\/div>\n<\/li>\n<\/ol>\n<p><strong>Disclaimer of Warranty<\/strong><br \/>\nTHE MODIFICATION IS PROVIDED &#8220;AS IS&#8221;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE FRAUDLABS PRO BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MODIFICATION OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.<\/p>","protected":false},"excerpt":{"rendered":"<p>Notice: By using the latest FraudLabs Pro for WooCommerce and WooCommerce Authorize.Net CIM Payment Gateway plugins, the credit card details [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_lmt_disableupdate":"","_lmt_disable":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"doc_category":[186,195],"doc_tag":[305,306,307,308,309,310,311,312,313,314],"class_list":["post-6958","docs","type-docs","status-publish","hentry","doc_category-e-commerce-platforms","doc_category-woocommerce","doc_tag-fraud-detection","doc_tag-fraud-prevention","doc_tag-fraudlabspro","doc_tag-iovation","doc_tag-maxmind","doc_tag-reduce-chargebacks","doc_tag-riskified","doc_tag-sift-science","doc_tag-signifyd","doc_tag-whmcs"],"year_month":"2026-05","word_count":557,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"FraudLabs Pro","author_nicename":"jhchew","author_url":"https:\/\/www.fraudlabspro.com\/resources\/author\/jhchew\/"},"doc_category_info":[{"term_name":"E-Commerce Platforms","term_url":"https:\/\/www.fraudlabspro.com\/resources\/categories\/e-commerce-platforms\/"},{"term_name":"WooCommerce","term_url":"https:\/\/www.fraudlabspro.com\/resources\/categories\/e-commerce-platforms\/woocommerce\/"}],"doc_tag_info":[{"term_name":"fraud detection","term_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials-tag\/fraud-detection\/"},{"term_name":"fraud prevention","term_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials-tag\/fraud-prevention\/"},{"term_name":"fraudlabspro","term_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials-tag\/fraudlabspro\/"},{"term_name":"iovation","term_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials-tag\/iovation\/"},{"term_name":"maxmind","term_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials-tag\/maxmind\/"},{"term_name":"reduce chargebacks","term_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials-tag\/reduce-chargebacks\/"},{"term_name":"riskified","term_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials-tag\/riskified\/"},{"term_name":"sift science","term_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials-tag\/sift-science\/"},{"term_name":"signifyd","term_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials-tag\/signifyd\/"},{"term_name":"whmcs","term_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials-tag\/whmcs\/"}],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to enable Credit Card Validation in WooCommerce for Authorize.Net CIM Gateway -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to enable Credit Card Validation in WooCommerce for Authorize.Net CIM Gateway -\" \/>\n<meta property=\"og:description\" content=\"Notice: By using the latest FraudLabs Pro for WooCommerce and WooCommerce Authorize.Net CIM Payment Gateway plugins, the credit card details [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-02T10:32:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"875\" \/>\n\t<meta property=\"og:image:height\" content=\"596\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\\\/\",\"url\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\\\/\",\"name\":\"How to enable Credit Card Validation in WooCommerce for Authorize.Net CIM Gateway -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/wp-content\\\/uploads\\\/2017\\\/08\\\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1.png\",\"datePublished\":\"2017-08-15T16:00:00+00:00\",\"dateModified\":\"2026-04-02T10:32:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/wp-content\\\/uploads\\\/2017\\\/08\\\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1.png\",\"contentUrl\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/wp-content\\\/uploads\\\/2017\\\/08\\\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1.png\",\"width\":875,\"height\":596},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resources\",\"item\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to enable Credit Card Validation in WooCommerce for Authorize.Net CIM Gateway\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/#website\",\"url\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/\",\"name\":\"\",\"description\":\"Resources About FraudLabs Pro Services\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.fraudlabspro.com\\\/resources\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to enable Credit Card Validation in WooCommerce for Authorize.Net CIM Gateway -","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:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/","og_locale":"en_US","og_type":"article","og_title":"How to enable Credit Card Validation in WooCommerce for Authorize.Net CIM Gateway -","og_description":"Notice: By using the latest FraudLabs Pro for WooCommerce and WooCommerce Authorize.Net CIM Payment Gateway plugins, the credit card details [&hellip;]","og_url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/","article_modified_time":"2026-04-02T10:32:42+00:00","og_image":[{"width":875,"height":596,"url":"https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/","url":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/","name":"How to enable Credit Card Validation in WooCommerce for Authorize.Net CIM Gateway -","isPartOf":{"@id":"https:\/\/www.fraudlabspro.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/#primaryimage"},"image":{"@id":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/#primaryimage"},"thumbnailUrl":"https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1.png","datePublished":"2017-08-15T16:00:00+00:00","dateModified":"2026-04-02T10:32:42+00:00","breadcrumb":{"@id":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/#primaryimage","url":"https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1.png","contentUrl":"https:\/\/www.fraudlabspro.com\/resources\/wp-content\/uploads\/2017\/08\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway-1.png","width":875,"height":596},{"@type":"BreadcrumbList","@id":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/how-to-enable-credit-card-validation-in-woocommerce-for-authorize-net-cim-gateway\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fraudlabspro.com\/resources\/"},{"@type":"ListItem","position":2,"name":"Resources","item":"https:\/\/www.fraudlabspro.com\/resources\/tutorials\/"},{"@type":"ListItem","position":3,"name":"How to enable Credit Card Validation in WooCommerce for Authorize.Net CIM Gateway"}]},{"@type":"WebSite","@id":"https:\/\/www.fraudlabspro.com\/resources\/#website","url":"https:\/\/www.fraudlabspro.com\/resources\/","name":"","description":"Resources About FraudLabs Pro Services","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.fraudlabspro.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/docs\/6958","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/comments?post=6958"}],"version-history":[{"count":0,"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/docs\/6958\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/media?parent=6958"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/doc_category?post=6958"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.fraudlabspro.com\/resources\/wp-json\/wp\/v2\/doc_tag?post=6958"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}