When your LP(s) has 15+ links to the offer, going through and changing all of them can be a unnecessary pain.
Here is a trick I use to speed up the process.
Place this snippet anywhere above the first offer link.
(it really can go anywhere above the first link, so for easiest use I even put it above the <html> tag so its the first thing you see)
Then replace all the links on you're LP with the following snippets
Obviously you can apply this to images, redirects, popups etc.
But when it comes to changing offers, it makes things much simpler! just edit the top snippet and all the links on your LP update.
More complex option:
If you're split testing multiple LP's you can also create a new file (e.g offers.php) that includes the first offer data snippit and just tell every LP to include that file with the following code:
Then you only have to update one file to update the links on all your LP's that you're split testing.
Here is a trick I use to speed up the process.
Place this snippet anywhere above the first offer link.
(it really can go anywhere above the first link, so for easiest use I even put it above the <html> tag so its the first thing you see)
Code:
<?php
$offer_one_name = 'OFFER ONE NAME';
$offer_one_link = 'offer1.php';
$offer_two_name = 'OFFER TWO NAME';
$offer_two_link = 'offer2.php';
?>
Then replace all the links on you're LP with the following snippets
Code:
// Example link for Offer One
<a href="<?php echo $offer_one_link ?>" target="_blank"><?php echo $offer_one_name ?></a>
// Example link for Offer Two
<a href="<?php echo $offer_two_link ?>" target="_blank"><?php echo $offer_two_name ?></a>
Obviously you can apply this to images, redirects, popups etc.
But when it comes to changing offers, it makes things much simpler! just edit the top snippet and all the links on your LP update.
More complex option:
If you're split testing multiple LP's you can also create a new file (e.g offers.php) that includes the first offer data snippit and just tell every LP to include that file with the following code:
Code:
<?php include 'offers.php' ?>
Then you only have to update one file to update the links on all your LP's that you're split testing.