Skip to main content

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.

  1. In ClickFunnels 2.0, go to Site & FunnelsSettingsSite Settings.
  2. Scroll down to Head Tracking Code.
  3. 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>
  1. 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.

  1. Open your funnelConfirmation Page in the editor.
  2. Go to SettingsTracking CodeFooter Code (recommended so it fires last).
  3. 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 as window.CF.orderTotal).

Step 4. Test your setup

  1. Click a Rumble ad. It should land you on your funnel with ?_raclid=xxxx in the URL.

  2. Complete the funnel checkout.

  3. On the confirmation page, open DevToolsConsole.

    • You should see: Rumble conversion sent: [raclid] [value]
  4. 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.