Integrating your Referral Rock program with Volusion is simple. We'll go step-by-step through the setup needed to track referral purchases.

Setting up the Referral Redirect Page

  1. Navigate to Program Editor > Share or click here
  2. Under Referral Destination, select Change Destination
  3. Make sure the Webpage Redirect option is selected and enter the URL to the page where your Gravity Form is hosted.

Referral Conversion Tracking in Volusion

The next step in setting up Referral Rock to work with Volusion is tracking conversions on your store. This will tell us which referral purchased from your store, the dollar value of their purchase, and who the member was that referred them so that you can reward that member. 

  1. Navigate to your Volusion Dashboard.

  2. Click Design > Site Content and scroll down until you find Article ID #130. Ensure it has the Spot Key set to ROI_Javascripts.

  3. Click on the article ID number and then click the HTML editor icon for the Article Body.

  4. Enter your Volusion Event Script (example below) in the box.

  5. Click Save.

📘

If you cannot find Article ID #130 or it does not have ROI_Javascripts set as the Spot Key, follow the steps outlined in this article to search for the correct article.

Volusion Example Event Script

<script type="text/javascript">
  window.rrSpace = (
    rrSettingsConversion = {
      debug: "false",
      parameters: {
        externalidentifier: Order[0],
        email: Order[9],
        amount: Order[2]
      }
    }
  );
  (function (f, r, n, d, b, y) { b = f.createElement(r), y = f.getElementsByTagName(r)[0]; b.async = 1; b.src = n; b.id = 'RR_DIVID'; y.parentNode.insertBefore(b, y); })(document, 'script', '//example.referralrock.com/webpixel/beta/universalv03.js');
</script>

❗️

The following script is an example only. You must replace "example" with your account's name which can be found here before the closing tag.