Home >
Questions and Answers >
Traffic Source Questions
PoF Guru's Wanted! (13)
07-18-2011 08:38 PM
#1
nezza (Member)
PoF Guru's Wanted!
Hi, I'm new round here - looking for some solid Plenty Of Fish advice please!
I'm promoting dating on PoF (duh!) and want to know the best overall strategy for launching/optimising camps from the PoF veterans, here's my questions:
1) How do you structure your dating camps at the beginning? I'm thinking:
5 year age blocks. e.g. 20-24,25-29
Sex (yes please! sorry that's childish..)
Country
Login count 0-50, 50-100, 100-200, 200-300
Freq cap = 3
Login count >3
Exclude mobile browsers
Anything else I'm missing?
2) Do you generally go quite broad with your targeting to start? (ie as above - unless there was a blindingly obvious thing to target like 'married = yes' for the specific dating offer).
3) Once you start seeing data - how do you optimise? Do you split the camps out further (e.g. login count ranges) or do you just pause non-converting demo's (e.g. smokers) using the pixel reporting in PoF?
3) Landers versus direct linking for dating. As a general rule do you find landers do better than dl for dating?
4) If you run landers how specific do you make them to the demo you're targeting?
Thanks!
07-18-2011 09:58 PM
#2
polarbacon (Moderator)

Originally Posted by
nezza
Hi, I'm new round here - looking for some solid Plenty Of Fish advice please!
I'm promoting dating on PoF (duh!) and want to know the best overall strategy for launching/optimising camps from the PoF veterans, here's my questions:
1) How do you structure your dating camps at the beginning? I'm thinking:
5 year age blocks. e.g. 20-24,25-29
Sex (yes please! sorry that's childish..)
Country
Login count 0-50, 50-100, 100-200, 200-300
Freq cap = 3
Login count >3
Exclude mobile browsers
Anything else I'm missing?
2) Do you generally go quite broad with your targeting to start? (ie as above - unless there was a blindingly obvious thing to target like 'married = yes' for the specific dating offer).
3) Once you start seeing data - how do you optimise? Do you split the camps out further (e.g. login count ranges) or do you just pause non-converting demo's (e.g. smokers) using the pixel reporting in PoF?
3) Landers versus direct linking for dating. As a general rule do you find landers do better than dl for dating?
4) If you run landers how specific do you make them to the demo you're targeting?
Thanks!
Don't fear the search button really I promise there is no adware download.....
http://stmforum.com/forum/showthread...-Ads!-(Private)
when your new here best thing you can do to learn is to just do a follow along its the best way to learn......
07-18-2011 10:31 PM
#3
Mr Green (Administrator)
1. That set up looks like a solid start.
2. Depending on what kind of dating offer you are promoting you could split a campaign with "single, divorced, separated" (I usually like too).
3. I pause the bad performing creatives before I start messing with the demo's. Once I have done that then I usually start at looking at the big targeting factors like age and sex, and see if any of them are doing terribly. Then I will go go deeper and deeper into the targeting.
3b. DEPENDS on two things; your angle and the offer. If you are going for a unique angle with your creatives you may need to bridge the gap between your creative and the offer. If the offer page is disgusting or has a longish form then you might want to presell using a lander.
4. Call out the age, location and anything else that is relevant. You can do most of these by using scripts that can be found using the search bar on the top right of the forums
.
07-23-2011 10:10 AM
#4
nezza (Member)
4. Call out the age, location and anything else that is relevant. You can do most of these by using scripts that can be found using the search bar on the top right of the forums .
I've been trying to find scripts which call back age, location etc from PoF and then place them into the lander - but I can't find them anywhere. I have searched guvnor, honest injun.
I know you can add {gender

efault} {age

efault} {state

efault} to the end of the tracking link. The bit I'm missing is how to extract that and get it into your lander.
07-23-2011 10:15 AM
#5
pinniped (Member)

Originally Posted by
nezza
I've been trying to find scripts which call back age, location etc from PoF and then place them into the lander - but I can't find them anywhere. I have searched guvnor, honest injun.
I know you can add {gender

efault} {age

efault} {state

efault} to the end of the tracking link. The bit I'm missing is how to extract that and get it into your lander.
You will probably need to pass them through the click-through URL (e.g., http://www.trackingdomain.com/lander.php?gender={gender

efault}&age={age

efault}&state={state

efault} ). Then, from your landing page, you can reference the parameters (in this case, using PHP, the variables would be called $_GET['gender'], $_GET['age'], and $_GET['state']).
07-23-2011 01:22 PM
#6
z6marketing (Member)

Originally Posted by
nezza
I've been trying to find scripts which call back age, location etc from PoF and then place them into the lander - but I can't find them anywhere. I have searched guvnor, honest injun.
I know you can add {gender

efault} {age

efault} {state

efault} to the end of the tracking link. The bit I'm missing is how to extract that and get it into your lander.
Add this to the top of your lander, above the <head> tag:
Code:
<?
$age=@$_GET['age'];
$state=@$_GET['state'];
$gender=@$_GET['gender'];
?>
Add these tags wherever you want to insert that info:
Code:
<?=$age?>
<?=$state?>
<?=$gender?>
And to get that info to the lander, append this to your landing page url:
whatever.com/index.php?age={age:default}&gender={gender:default }&state={state:default}
You can then set your tracking link to use the <?=$age?>, <?=$gender?> and <?=$state?> placeholders as the subid, to track that way as well.
Remember to save your lander as a PHP file, this won't work if it's saved as an HTML file.
07-23-2011 03:29 PM
#7
nezza (Member)
Awesome, thanks guys.
07-23-2011 03:43 PM
#8
machete ()

Originally Posted by
z6marketing
Add this to the top of your lander, above the <head> tag:
Code:
<?
$age=@$_GET['age'];
$state=@$_GET['state'];
$gender=@$_GET['gender'];
?>
Add these tags wherever you want to insert that info:
Code:
<?=$age?>
<?=$state?>
<?=$gender?>
And to get that info to the lander, append this to your landing page url:
whatever.com/index.php?age={age:default}&gender={gender:default }&state={state:default}
You can then set your tracking link to use the <?=$age?>, <?=$gender?> and <?=$state?> placeholders as the subid, to track that way as well.
Remember to save your lander as a PHP file, this won't work if it's saved as an HTML file.
Fuck man, didn't realize it was that easy haha. Thanks a bunch for this! Time to bank hard now
07-23-2011 04:39 PM
#9
z6marketing (Member)
I'm not a coder, so you can thank Besmir for indirectly teaching me how to do this when he was showing me how to pull info from the extra tokens in prosper to display on landing pages. It was a short jump from there to figuring out how to use it to push tokens from PoF to my pages.
07-23-2011 04:56 PM
#10
machete ()
Besmir is the man! I'm assuming this works as well in CPVLab? If so, would I use the POF format in my CPVLab tokens like {age:default} or the PHP format like <?=$age?>
07-24-2011 12:51 AM
#11
z6marketing (Member)
Yeah it works with CPVLab, and if you add a custom token in CPVLab in the campaign for each token you use on the lander, it will also let you track the clicks and conversions by that data as well.
08-06-2011 10:31 PM
#12
steezy (Member)
I was just about to make a bunch of Pof landers...you saved my ass a ton of time. thanks and a bump are in order.
08-11-2011 04:56 PM
#13
bill400 (Member)
I mentioned this in another post..
Tip; Unless you want to fill your error log with "PHP Notice: Undefined variable:" and slow down your load time a tad, you need to declare your variables or use isset to check if they are declared before referencing them when using $_GET.
Instead of :
Code:
$age=@$_GET['age'];
$state=@$_GET['state'];
$gender=@$_GET['gender'];
do something like:
Code:
if(isset($_GET['age'])) {
$age= $_GET['age'];
}
if(isset($_GET['state'])) {
$state= $_GET['state'];
}
if(isset($_GET['gender'])) {
$gender= $_GET['gender'];
}
You can also setup a custom error handler for E_NOTICE, disable E_NOTICE or suppress the error with the @OPERATOR (will slow it down on high loads). I think it is easier to use isset
Using PHP 5.3.3
Home >
Questions and Answers >
Traffic Source Questions