Home > Tracking Campaigns > Voluum

Voluum multi-offer page with organic traffic (3)


05-14-2016 03:30 PM #1 basedaffiliate (Member)
Voluum multi-offer page with organic traffic

So my campaign is set up with a multi-offer lander. The offer links (such as mycname.mydomain.com/click/1) work if and only if the campaign link was clicked prior to
entering the website. The thing is, I'm interested in these offer links to work also when there's organic traffic. Is there a way to include a pixel or something that will make them work either way?


05-14-2016 06:52 PM #2 addstravel (AMC Alumnus)

One way that I found works was suggested by @caurmen grabbing the Voluum parameters from the querystring and setting a cookie.

When creating the link for the offer simply check if the cookie is present, if so then use Voluum link.

Otherwise use a direct link etc.

Here is the link to the thread (from comment #58):

http://stmforum.com/forum/showthread...This-Now/page2


05-15-2016 11:17 AM #3 olorin (AMC Alumnus)

Here's what we do when you don,t have too many offers (1-3):

1. Setup campaigns, 1 for media buying and X organic campaigns (1 for each offer).
2. On LP detect if voluumdata is empty (with php), if empty display organic campaign url.

Code:
<?php
if (isset($_GET["voluumdata"])) {
$offer1 = "http://trk.traking.com/click/1";
$offer2 = "http://trk.traking.com/click/2";
$offer3 = "http://trk.traking.com/click/3";
} else {
$offer1 = "http://trk.traking.com/n38t9ygfg-38b7-4yhg-g45g-9i059a31c7ce"; //Voluum organic campaign 1
$offer2 = "http://trk.traking.com/n38t9ygfg-38b7-4yhg-g45g-9i059a31c7ce"; //Voluum organic campaign 2
$offer3 = "http://trk.traking.com/n38t9ygfg-38b7-4yhg-g45g-9i059a31c7ce"; //voluum organic campaign 3
}
?>
and your links:
Code:
<a href="<?php echo $offer1; ?>" target="_blank" rel="nofollow">LINK</a>


Home > Tracking Campaigns > Voluum