Installation Guide
Integrate Refgrow into your website or application
Overview
Integrating Refgrow into your website or application is straightforward. This guide walks you through the process of adding the necessary code to set up your affiliate program.
The installation consists of two main parts:
- Adding the Affiliate Dashboard to your website
- Setting up conversion tracking
Adding the Affiliate Dashboard
The affiliate dashboard is where your affiliates will track their referrals, get their links, and access promotional materials.
Option 1: With User Authentication
If your website has user authentication, use this code to automatically associate the dashboard with the logged-in user:
<div id="refgrow" data-program-id="YOUR_PROGRAM_ID" data-program-email="user@example.com"></div>
<script src="https://refgrow.com/js/page.js"></script>
Parameters:
data-program-id
: Your unique program ID (find this in your Refgrow dashboard)data-program-email
: The email of the currently logged-in user (should be dynamically populated with your user's email)
Option 2: Without User Authentication
If you don't have user authentication or want to use Refgrow's built-in authentication, use this simpler code:
<div id="refgrow" data-program-id="YOUR_PROGRAM_ID"></div>
<script src="https://refgrow.com/js/page.js"></script>
Parameters:
data-program-id
: Your unique program ID (find this in your Refgrow dashboard)
With this option, users will need to sign in or register through the Refgrow interface.
Complete Page Example
Here's a complete HTML page example that includes the Refgrow dashboard:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Affiliate Program</title>
</head>
<body>
<h1>Our Affiliate Program</h1>
<!-- Refgrow Dashboard Integration -->
<div id="refgrow" data-program-id="YOUR_PROGRAM_ID"></div>
<script src="https://refgrow.com/js/page.js"></script>
</body>
</html>
Setting Up Conversion Tracking
To attribute conversions to your affiliates, you need to add tracking code to your website. Refgrow offers several methods for tracking conversions:
1. Basic Tracking Script
Add this script to all pages of your website, ideally in the <head>
section:
<script src="https://refgrow.com/js/tracking.js" data-program-id="YOUR_PROGRAM_ID"></script>
This script handles referral link detection and cookie placement for proper attribution.
2. Manual Conversion Tracking
After adding the basic tracking script, you can manually track conversions by calling the Refgrow function:
// Track a signup (no monetary value)
Refgrow(0, 'signup', 'user@example.com');
// Track a purchase with a monetary value
Refgrow(99.99, 'purchase', 'user@example.com');
Parameters:
value
: The monetary value of the conversion (use 0 for non-monetary conversions like signups)type
: The type of conversion ('signup' or 'purchase')email
: The email of the user who completed the conversion
Place this code on your thank you page, after successful checkout, or whenever a conversion happens.
3. Stripe Integration
For automatic tracking of Stripe payments:
- Go to your program settings in Refgrow dashboard
- Navigate to the "Integrations" tab
- Select "Stripe" as your conversion tracking method
- Follow the instructions to connect your Stripe account
Once connected, Refgrow will automatically track purchases made through Stripe.
4. LemonSqueezy Integration
For LemonSqueezy integration:
- Go to your program settings in Refgrow dashboard
- Navigate to the "Integrations" tab
- Select "LemonSqueezy" as your conversion tracking method
- Enter your LemonSqueezy API key
- Set up a webhook in your LemonSqueezy dashboard pointing to:
https://refgrow.com/api/webhook/lemonsqueezy/YOUR_PROGRAM_ID
Testing Your Installation
After setting up Refgrow, you should test that everything is working correctly:
- Create a test affiliate account
- Generate a referral link
- Click the referral link and verify that the cookie is set (you can check your browser cookies)
- Complete a test purchase or signup
- Verify that the conversion appears in your Refgrow dashboard
Troubleshooting
Common Issues
- Ensure the tracking script is added to all pages
- Check that your program ID is correct
- Verify that third-party cookies are not blocked by the user's browser
- Ensure the conversion tracking code is properly implemented
- Check that the program ID is correct
- Ensure there are no JavaScript errors on your page
- Verify that the page.js script is loading properly
Next Steps
After completing installation:
- Configure your program settings to match your requirements
- Set up your commission structure
- Customize the affiliate dashboard
- Set up your payout preferences