Home > Tracking Campaigns > CPV Lab Pro

CPVLab: Multi Option Campaigns - Landers and Offer IDs (9)


11-03-2013 01:22 AM #1 nyc (Member)
CPVLab: Multi Option Campaigns - Landers and Offer IDs

Since I'm in adult dating pretty much all my campaigns are multiple option to direct age groups to different offers. I don't know if its a coincidence or not but when I switched from DL & LP campaigns to multiple options I noticed a huge difference in conversions even though I don't get that much clicks for 18-24 years old. From what I understand, each option group would equal a different ID on my landing page:

Option Group 1

Code:
http://tracker.com/base2.php?id=1
Option Group 2
Code:
http://tracker.com/base2.php?id=2
So my question is, when it comes to IDs, how should they be setup? should the IDs for an option group all be different: 1,2,3,4? The same: 1,1,1,1? Or does it not matter at all?

Today I notice 8 straight clicks going to offer1 in Option 2 and the next bunch of clicks going to offer2 in the same group so I think something about my setup must be off.. should it be 50/50 back and forth or is this normal?

Also, as far as landing pages those should just be different IDs right?


11-03-2013 03:03 AM #2 JasperP (Member)

since the id in base2.php?id= correspond to the option group in a multiple options campaign, the IDs for each offer don't really have much use, so it doesn't matter if you change those or not.

As far as how the offers are rotated, it doesn't seem to follow an alternating sequence. However, it appeared that the offers clicks evened out eventually.


11-03-2013 07:27 AM #3 kevins (Member)

Then what's the purpose of the ID field?

If using them doesn't match them up?

LP ID1

Offer ID 1


LP 2

Offer ID 2

Can that make them match up correctly?


11-03-2013 05:17 PM #4 bbrock32 (Administrator)

The id is the option group ids.

As for single offer ids I always keep them different ( ids normally should be ) and never had any problems.


11-05-2013 03:42 AM #5 nyc (Member)

The reason I asked the original question is because I was wondering if its possible that the multi option campaigns could have an effect on my conversions.. i know that by splitting ages I'm going to have lower conversions, but I went from 60-80 in 1 day to under 10 across all offers when I switched to multi option campaigns.. To test this, I ran traffic traffic to an offer that I haven't been able to convert in days by running it as a direct link and landing page campaign so I wasn't able to split the traffic at all but as soon as it started to get some impressions I started to get some conversions. I didn't want to run much traffic to it, but seeing how it hasn't converted all day as a multi option but it does instantly set up as a basic 1 offer/landing page is confusing me.. If my conversions dropped to 0 when I switched to the multi option that would be 1 thing but I still get conversions just much lower.. is there anything that could cause this? Here is my multi option campaign setup: http://d.pr/H8sS .. does anything look out of place?


11-05-2013 08:02 AM #6 JasperP (Member)

Are you redirecting based on a survey like "Are you 25 and over?"? That can have an effect on conversion rates.

I'm assuming that you weren't redirecting based on their answer with the DL/LP so that could be your issue


11-05-2013 10:30 AM #7 nyc (Member)

Quote Originally Posted by JasperP View Post
Are you redirecting based on a survey like "Are you 25 and over?"? That can have an effect on conversion rates.

I'm assuming that you weren't redirecting based on their answer with the DL/LP so that could be your issue
I am but I'm not to getting that much clicks on 18-24 for it to change as much as it does.. is there a way to setup a lander with 2 DL&LP campaigns to test? what other solutions do I have? What else can I check?


11-05-2013 02:50 PM #8 getzlaf15 (Member)

Looks like you have it setup right.

Personally, I would change the ID 1 under option 1 to like 1001 then do and option 2 to 1002, I don't know if it matters but you have id = 2 up top.


base2.php?id=1001 would send to Offer for ages 18-24
and
base2.php?id=1002 would send to 25+ one.


Also, you could copy the lander to another name, and direct link to offer from your lander (using some sort of id that lets you know it was that lander)


11-05-2013 04:22 PM #9 JasperP (Member)

With the basic DL/LP, you can set up direct links and landing pages then choose a percentage to rotate between them.

or wait.. i think you're setting up 2 completely separate DL/LP campaigns right?

You would have to manually rotate them with a script. Here's one quick and dirty way:

Code:
<?php

$r = rand(1,3);

$link[1] = "http://cpvlabtracker.com/base.php?c=11&key=123123123" . "&" . $_SERVER['QUERY_STRING'];
$link[2] = "http://cpvlabtracker.com/base.php?c=22&key=123123123" . "&" . $_SERVER['QUERY_STRING'];
$link[3] = "http://cpvlabtracker.com/base.php?c=33&key=123123123" . "&" . $_SERVER['QUERY_STRING'];

header("Location: " . $link[$r]);


?>
Example Link:
Code:
http://mylandingpage/r.php?keyword=123
Will randomly go to a link like:
Code:
http://cpvlabtracker.com/base.php?c=22&key=123123123&keyword=123


Home > Tracking Campaigns > CPV Lab Pro