Home > Tracking Campaigns > Voluum

How Do I Set Up Voluum for an iframe offer on Landing Page (4)


01-28-2016 07:47 PM #1 mayor01234 (Member)
How Do I Set Up Voluum for an iframe offer on Landing Page

I am having issues with conversions posting to Voluum for an IFRAMED offer on my Landing Page.

How do I set up tracking for an iframe offer on my LP?

Note: Conversions post in the Affiliate Network but not in Voluum

Thanks


01-28-2016 07:58 PM #2 beckslash (Member)

You can set your LP as an offer in Voluum and pass the click id to the offer url in the iframe with php.

If the user has to go through some funnel (ex: answer a few questions) before the iframe is loaded with some javascript and you want to track how many people actually answer them and get to your offer (to see the CTR) you can put your voluume click link as src of the iframe . (I think it works, but I never tested it). In this case you set your LP as a Lander and the iframed offer as an Offer in Voluum.


01-29-2016 12:24 AM #3 mayor01234 (Member)

Thanks backlash for the prompt response. I appreciate.

1. I have tried passing the offer the clickid to the offer url in the iframe with php BUT it is not working. The clickid is showing up as {click_id} in the reports.

2. I just tried replacing the url src with the iframe but it didn't work. The form didn't not display.

Any other suggestion?





Quote Originally Posted by beckslash View Post
You can set your LP as an offer in Voluum and pass the click id to the offer url in the iframe with php.

If the user has to go through some funnel (ex: answer a few questions) before the iframe is loaded with some javascript and you want to track how many people actually answer them and get to your offer (to see the CTR) you can put your voluume click link as src of the iframe . (I think it works, but I never tested it). In this case you set your LP as a Lander and the iframed offer as an Offer in Voluum.


01-29-2016 04:02 PM #4 beckslash (Member)

I think you didn't set things up properly. Let me give you more details.

1. Set up an offer in Voluum with your LP. The url should be like this: http://YourSite.com/index.php?myClickId={clickid}
2. Set up a new campaign in Voluum. Select Path and Direct linking with your offer set in step 1.
3. Now to your LP code. You need to pass the clickid to your iframe. The page code should have these in it:

Code:
<?php
$myClickId = $_GET['myClickId'];
//echo "The clickid I got is: ".$myClickId."<br>";
?>

<iframe src = 'http://AffliaiteLink.com/?s1=<?php echo $myClickId;?>'></iframe>
Note: remove the "//" from the echo "The clickid..." line if you want to see the id printed when you load if in the browser. But you should obviously access your page through your voluum campaign URL.

Let me know if it works now or if you have more questions.


Home > Tracking Campaigns > Voluum