PPV Landing Page Tips

March 2, 2012 in PPV, Scripts, Simplifying Life

First off I’d like to apologize for the lack of posts on the blog lately, I’ve been slacking and haven’t had much inspiration lately to write anything as I want every post I make to be as useful, relative or entertaining as possible (not so true with the post on ASW… to some extent :) )

Since I’ve shifted my focus for the next month to diversifying by building out 1 or 2 profitable PPV campaigns to run alongside some other profitable campaigns I have running at the moment, I’ve come up with a few things that I think will make lives easier and potentially help with landing page CTR (not verified to be true, but worth a test in whichever niche you promote).

Removing TLD from targets

First of all, an idea I came up with recently was that it would potentially look more trustworthy to present the user (as long as the offer you’re promoting allows it) with the name of the website, minus the TLD.

Now this only works if your targeting domains in the first place, so if you’re not, separate the campaign into two so you can have separate landers for different targets types (keywords and domains).

Basically, if your target has a “.” anywhere in it, it’s going to split it up. This isn’t flawless, especially if you’re targeting subdomains.

This will work for simple url targets such as:

something.com
something.org
something.net

It’ll also capitalise the first letter..here’s the code:

if(isset($_GET["keyword"]))
{
	$target = $_GET["keyword"];
	$tmpArray = explode(".", $target);
	$sitename = ucfirst($tmpArray[0]);
}

For the above examples, something.com, something.org and something.net

$sitename will be equal to “Something” for you to use on your pages:

Dear <!--?php echo $sitename ?--> Visitor,

Unique color scheme’s to match the target URL

Now, this is an easy way to develop color schemes for your landers with a tiny bit of PHP and CSS.

Using the above code, you can also assign classes to the main container which you are using for the site, be it the body tag or a centrally aligned div.

All you need to do is use this code on your container tag, for this example I’ll assume it’s a div:


Within your main CSS stylesheet, you can now style entire pages to use different colors quite easily.

This is something you would do with your top, high volume targets if you would like to test whether or not the color scheme helps CTR).

Lets assume you have your top five targets:

  • google.com
  • stackthatmoney.com
  • imgrind.com
  • facebook.com
  • mrgreen.am

Now lets open up our stylesheet. Using the above HTML, let assume we want to have a different color border for each of these sites, however you want the same color border for google and mrgreen, the same for imgrind and facebook, and stackthatmoney can have their own.

This the CSS code you could use to achieve this:

div.google .border,
div.mrgreen .border { color: #0C0; }

div.imgrind .border,
div.facebook .border { color: #06F; }

div.stackthatmoney .border { color: #06F; }

I’ll be running some split tests with this idea on my current campaigns, perhaps I’ll follow this up with a case study.

- Andrew

Song of the week:

 

If you’re looking for further PPV Guidance, the guys over at PPV Playbook know their shit. Great community of experienced marketers from around the globe.

Can’t Decide Tracking Software?

Often I get asked which tracking software I prefer to use for tracking my campaigns. I used to be a p202 fanboy and use it exclusively, until I set my eyes upon CPVLab, which is now, to date, still my preferred method of tracking. You can get CPVLab here >> for around $300 .. any serious affiliate marketer will know that good tracking is a worthy investment!