Showing different ClickBank sales pages to different affiliates

5 replies
Fellow warriors,

Is there a script which shows different sales pages to traffic sent by different Clickbank affiliates?

For example, ?hop=xxxxx would see sales page A while ?hop=yyyyy would see sales page B.

Thanks!

Deric
#affiliates #clickbank #pages #sales #showing
  • Profile picture of the author smlover
    do you mean reffered site ? if so, just patch up google analytics in your affiliate site
    {{ DiscussionBoard.errors[3469382].message }}
  • Profile picture of the author Deric Yin
    No, referrers are blanked out by the Clickbank hoplink.
    Signature
    Got Dating Traffic? This has got to be the easiest way to make money. Click Here

    Get $200 EXTRA on top of 75% ClickBank commissionsFind Out How
    {{ DiscussionBoard.errors[3469422].message }}
  • Profile picture of the author mikemcmillan
    Hi Deric,

    If I understand you correctly the answer is yes. There are several things to consider though. Let's assume first that each of your different sales pages is for the same product of yours at the same price point.

    If you can write some simple PHP you can easily do this. You can sort out incoming clicks by different affiliates and direct clicks from different affiliates to different sales pages. That way you could modify the sales pages. You could begin a particular sales page with something like, "Welcome John Doe Subscribers" or something like that.

    I have some PHP programming books that all explain things like that, but if you do a search for "selling multiple products through one Clickbank account" you can learn how to do that from many sites. To make that work, as I have done it you need to inform particular affiliates of the ID they would need to append to their hoplink to your page to make it work.

    You can also use something like Adrian Ling's EZClickmate - http://easyclickmate.com/ - which I think runs about $69 (better look it up as I can't recall the price exactly) that will do what you want. This will allow you to offer more than one of your CB products from one sales page and have affiliates get credited for sales for each one... something you can't do normally because CB only generates hoplinks for the primary (#1) product in a given account only.
    Hope that helps just a tad bit. --Mike
    Signature

    I'll help you create a reputation-building evergreen product in any niche and launch it successfully!
    Check it out here.

    {{ DiscussionBoard.errors[3469724].message }}
  • You need Easy Click Mate, it does exactly what you need.
    {{ DiscussionBoard.errors[3470188].message }}
    • Profile picture of the author Brandon Tanner
      This is easy to do with a few lines of php. Just paste the bolded code below into the very top of your landing page (above any HTML code)...

      <?php

      $affiliate = $_GET["hop"];

      if ($affiliate == "xxx")
      {header('Location: http://www.yourwebsite.com/xxx.html');}
      elseif ($affiliate == "yyy")
      {header('Location: http://www.yourwebsite.com/yyy.html');}
      elseif ($affiliate == "zzz")
      {header('Location: http://www.yourwebsite.com/zzz.html');}

      ?>


      Then just change where it says xxx, yyy, zzz, etc, to the appropriate affiliate nicknames and page names. And if you need to add more affiliates, just keep adding more 'elseif' statements --> everything between elseif and }

      And don't forget to give your landing page a php extension (index.php)

      Also, if all of those pages are similar, it would be a good idea to make all but one of those pages 'noindex/nofollow', to prevent the SE's from tagging all of the pages as duplicate content.

      Hope that helps!
      Signature

      {{ DiscussionBoard.errors[3471960].message }}

Trending Topics