Recharge

Overview
If your website uses Recharge for subscription checkout, you will need to complete the below steps to ensure that Black Crow is tagged on your Recharge checkout pages.
Setup
Step 1: In your Recharge Portal, select Storefront from the left menu.
Step 2: Select Checkout.
Step 3: Ensure "Enable Javascript on page 1 of checkout" is selected.
Step 4: Add the following code to the input box below "Enable Javascript on page 1 of checkout".
Please ensure you add your Shopify store name where it says "your-shop-store-name" in the code below. For example: if your shop name is your-shop-store-name.myshopify.com, use "your-shop-store-name".
function loadBlackCrow() {
var script = document.createElement('script');
script.src = 'https://init.blackcrow.ai/js/core/your-shop-store-name.js';
script.async = true;
document.getElementsByTagName('head')[0].appendChild(script);
}
loadBlackCrow();
Step 5: Under "Thank you page", please add the following code as well:
Please ensure you add your Shopify store name where it says "your-shop-store-name" in the code below. For example: if your shop name is your-shop-store-name.myshopify.com, use "your-shop-store-name". Also, please note that this code snippet is different than above.
<!-- Black Crow Script -->
<script src="https://init.blackcrow.ai/js/core/your-shop-store-name.js" async="true"></script>
<!-- End Black Crow Script -->