BoomerangMe
Use BoomerangMe with stripe as payment processor
Ayo AbdulLast Updated June 26, 2025
Step 1: Tracking website visitors
Insert the following script in your website's <head>
tag to start tracking clicks:
<script
src="https://pushlapgrowth.com/affiliate-tracker.js"
data-affiliate
data-program-id="YOUR_AFFILIATE_PROGRAM_ID"
async>
</script>
Step 2: Connect Stripe
To proceed, connect your Stripe account by going to Dashboard → Integrations → Connect payment processor → Stripe. (Please complete the whole stripe connection flow to have your affiliate program connected to your stripe account)
Step 3: Tracking sign-ups and sales
Add this script to the page where users sign up or enter their emails. Make sure the script in step 1 is also available on this page. Please add this script at the bottom of your website before the closing </body> tag.
<script>
function handleFormSubmit(event) {
var form = event.target;
var emailInput = form.querySelector('input[type="email"]') || form.querySelector('input[name="email"]');
if (emailInput && emailInput.value) {
window.createPushLapEmail(emailInput.value);
}
}
function attachListeners() {
var forms = document.querySelectorAll('form');
forms.forEach(function(form){
form.addEventListener('submit', handleFormSubmit);
});
}
window.addEventListener('affiliate_referral_ready', attachListeners);
</script>
Summary
By following these steps, you can successfully integrate BoomerangMe with Push Lap Growth for accurate affiliate tracking.
Did this answer your question?