Rumble Conversion Tracking Setup (ClickFunnels 2.0)
Step 1. Install the Global Rumble Tag
Place the global script on all funnel pages so that any conversion event can fire.
- In ClickFunnels 2.0, go to Site & Funnels → Settings → Site Settings.
- Scroll down to Head Tracking Code.
- Paste the following snippet:
<script async src="https://a.ads.rmbl.ws/ratag?id=AV-6775"></script>
<script>
window._ratagData = window._ratagData || [];
function ratag() {_ratagData.push(arguments);}
</script>
- Select Save.
Step 2. Trigger conversion on page load
These instructions set the conversion to fire when someone lands on the order confirmation / thank-you page.
- Open your funnel → Confirmation Page in the editor.
- Go to Settings → Tracking Code → Footer Code (recommended so it fires last).
- Paste the following code:
<script>
// Extract Rumble's raclid from URL if present
const urlParams = new URLSearchParams(window.location.search);
const raclid = urlParams.get('_raclid');
// Grab ClickFunnels 2.0 order total
// (ClickFunnels exposes it as window.CF.orderTotal on confirmation pages)
const orderValue = window.CF?.orderTotal || 0;
// Trigger Rumble conversion
ratag('conversion', {
to: 226, // Your Rumble conversion action ID
cid: raclid, // Pass Rumble click ID
value: orderValue, // Send the order total
callback: function() {
console.log('Rumble conversion sent:', raclid, orderValue);
}
});
</script>
Step 3. Confirm parameters
to
= Your Rumble conversion action ID (replace 226 with the ID from RAC).cid
= The Rumble click ID (_raclid
) automatically added to your funnel URLs.value
= The ClickFunnels 2.0 order total (available aswindow.CF.orderTotal
).
Step 4. Test your setup
-
Click a Rumble ad. It should land you on your funnel with
?_raclid=xxxx
in the URL. -
Complete the funnel checkout.
-
On the confirmation page, open DevTools → Console.
- You should see:
Rumble conversion sent: [raclid] [value]
- You should see:
-
In RAC, check if the conversion event was logged under your campaign.
Notes and best practices
-
If you run multiple products in the same funnel, the
window.CF.orderTotal
variable will reflect the total cart value. -
For lead funnels (no purchase), you can remove value and just fire a count-based conversion:
ratag('conversion', { to: 226, cid: raclid });
-
Always double-check your conversion action ID (
to: ###)
inside RAC to match the right goal.