Link Hook Technique

December 30th, 2010 2 comments

NOTE: Let me make it clear that I do know of some simple link-friendly ways to make links appear as though they are not referral links i.e. the popular ‘mrtemple.com/loves/ebay’ style of redirects. This is another method.

As more people are spending time on the web they’re becoming more savvy at avoiding affiliate links, for example, you’ve spent over an hour writing the perfect sales pitch for a product or service and just as you’ve dazzled your reader, the smartass goes out of their way to make sure you don’t receive commision on the sale. Don’t deny it, everyone has done this at least once, including myself.

So I like to imagine they’re is certain levels to the ‘Web Savvy Meter’ i.e. (Noob, Casual, Techie & Affiliates).

I would consider affiliates to be the most web savvy users, possibly because it’s a requirement to stay on top of the game that is internet marketing. So, tricking a trickster becomes difficult when you want to collect commission and they really don’t want to give it to you. This is where the ‘Link Hook Technique’ comes in, not only will it make sure you get your commision, it will also make you look like a nice guy when they think you’re not just trying to sell them something.

Link Hook Technique

Here is a neat PHP function I whipped up in a few second to make life a bit easier:

function linkHooker($displayLink, $redirectLink, $linkText = ""){
        $return = "";
        if($linkText){
                $return = "<a href=\"".$displayLink."\" onmouseup=\"return this.href=’".$redirectLink."’\" target=\"_blank\">".$linkText."</a>";
        }else{
                $return = "<a href=\"".$displayLink."\" onmouseup=\"return this.href=’".$redirectLink."’\" target=\"_blank\">";
        }
        echo $return;
}

How to Use

If you want to create a text/image link with the link hook technique, you simply call the function as follows:

// Output: <a href="http://www.ebay.com" onmouseup="http://www.mrtemple.com/redirect.php?offer=eBay" target="_blank">eBay</a>

<?php linkHooker("http://www.ebay.com", "http://www.mrtemple.com/redirect.php?offer=eBay", "eBay"); ?>

// Output: <a href="http://www.ebay.com" onmouseup="http://www.mrtemple.com/redirect.php?offer=eBay" target="_blank"><img src=\"images/eBay.png\" /></a>

<?php linkHooker("http://www.ebay.com", "http://www.mrtemple.com/redirect.php?offer=eBay", "<img src=\"images/eBay.png\" />"); ?>

If you are looking to hyperlink a big section of HTML, then you can use the function like this:

// Output: <a href="http://www.ebay.com" onmouseup="http://www.mrtemple.com/redirect.php?offer=eBay" target="_blank">
// *** You then must add the </a> to close the link wherever you choose

<?php linkHooker("http://www.ebay.com", "http://www.mrtemple.com/redirect.php?offer=eBay"); ?>

How it Works

It’s simple, the user hovers over your link and sees your display link, only when they press down on the mouse and then release it does the URL get switched out ‘onmouseup’ with your redirect link followed instantly by the browser following your redirect.

Example

Go to Google now!

Attention

Now, please DO NOT ABUSE THIS TECHNIQUE! I was very sceptical about whether I should even write this post telling others about this, it can be abused for wrong-doing and phishing, please keep this technique clean, only use it if your sending your reader to the matching end website via your display link and redirect link.

I have searched the internet for this technique being used elsewhere and cannot find anything written by anyone, I don’t know if it’s unique, but it’s definitely fun, so enjoy!

Categories: Code Tags:

My First Goal

December 21st, 2010 1 comment

Okay, this is the point were I take action again on affiliate marketing to get things working this time around.  I never actually set specific goals in the past, but I feel that posting these on this blog will help me organize my priorities and keep me focused on what I want to achieve.

Goal to be achieved by January 31st

  • Earn $20/day net profit with CPV

Actions required to meet goal

  1. Sign up to PPV Playbook
  2. Spend one day reading the forum in detail
  3. Install Prosper on more practical domain
  4. Set up a SSL certificate on the domain
  5. Learn how to use real-time pixel placement tracking
  6. Research a simple CPV campaign to run
  7. Use PPV Playbook tools to gather the URLs and keywords I need
  8. Research CPV landing page tips & layouts from CPV marketers (no point starting from scratch)
  9. Create 3 or 4 different landing pages for the offer in Photoshop
  10. FTP images and code landing pages on a landing domain
  11. Set up the campaign with Prosper and use pixels to track conversions
  12. Check the campaign 2 times a day, no more; this is when optimization will also be done
  13. If the campaign is struggling with traffic, add more URLs, else if the campaign is struggling to turn profit after optimization, add 2 new landing pages into rotation and remove 2 most underperforming ones.
  14. Repeat steps 6 to 13 as many times as possible before the goal deadline.

If I can maintain focus I don’t see why I can’t create at least 4 CPV campaigns by the end of January, meaning that if I want to meet my goal, each campaign will need to turn a net profit of only $5.  Breaking things down puts the goal into perspective and if I can’t achieve this, then I need to quit life.

To get the ball rolling, tonight I am going to finally sign up to PPV Playbook, I signed up to Adam Bunch’s discount email list a while ago and if I actually get the 50% discount I will have another $33.50 to put towards buying data.

Here goes :)

Categories: Goals Tags: