How to Configure Verification Post Checkout
We recommend that verification happen before after collection of Billing & Shipping Address, but before processing payment and finalizing the order in a checkout process. This creates the environment for the most accurate verifications and the fewest chargebacks and refunds.
However there are times when it is appropriate for verification to happen post checkout.
Wordpress/WooCommerce
Navigate to the Token of Trust app Settings > WooCommerce. Un-click the second checkbox under Order Verification.
Shopify
The thank you page has its own place for modifications that seems to live outside of themes. It can be found by navigating into Shopify Admin and then into Settings (bottom left of the admin panel) / Checkout (menu item) / Additional Scripts (form field toward bottom).
Paste the following script into the area provided
<script> // Prelaunch script for tokenoftrust.com // Add this to the end of the url to require tot to test prelaunch: utm_content=totActive var alwaysRequireTot = 0; // set to true on go live. window.totActive= function totActive() { return alwaysRequireTot || window.location.href.indexOf('totActive') > -1 || window.location.href.indexOf('totActive') > -1; } if (!window.totActive|| !window.totActive()) { console.warn("TOT: post-checkout script running in pre-launch mode."); } else { console.warn("TOT: post-checkout script been activated client side."); } </script> <script type="text/javascript" src="https://shopify.tokenoftrust.com/tot-shopify.js?shop={{shop.permanent_domain}}"></script>