The most pressing concern for ClickBank affiliates is how to prevent a customer from purchasing under their own link and depriving them of their commission.
There are two ways that this happens.
An affiliate URL (or hoplink) has the format
http://AFFILIATE.VENDOR.hop.clickbank.net
Once the vendor-id is known it is simple for someone to replace the original affiliate-id with their own.
A potential customer can simply sign up to the affiliate program if it is publicised at the product site and purchase the product himself.
The vendor-id needs to be concealed in the two places where it is visible, namely
- in the order link on the vendor sales page
- in the affiliate URL
Don't allow the link to the order page to be seen, viz
http://ITEM.VENDOR.pay.clickbank.net
It can be replaced by any of these
Create a file called say order.php with this content
<?php
header("Location: http://ITEM.VENDOR.pay.clickbank.net");
exit;
?>
and link to order.php
If your host does not support php use the cloaking code shown at ClickBank here
Don't show the hoplink, viz
http://AFFILIATE.VENDOR.hop.clickbank.net
It can be replaced by any of these
Create a file called say product.php with this content
<?php
header("Location:
http://AFFILIATE.VENDOR.hop.clickbank.net");
exit;
?>
and link to product.php
Typically there is an overt link to an affiliate signup page worded 'Earn money' or 'Become an affiliate'. There are 3 ways to avoid this:
Make the link less conspicuous. Put it on an About page or an FAQ page. Or a separate page where search engine indexing is barred. Someone who is really keen to become an affiliate will hunt around for this information.
Explain that the affiliate program is only open to selected individuals and to write for more information. Also mention that customers are entitled to become affiliates - this is actually a good plus point for your sales copy.
Have a separate (landing) page for affiliates. This page will have the basic sales copy and order link, whereas on the vendor page you can have any of the 'leaks' to which affiliates object such as
The simplest way to create alternative pages for affiliates is to use easyClickMate
Affiliates please note: if there is a vendor site which you particularly want to promote you can suggest to the vendor that he reads the suggestions on this page. The URL is http://www.clickbankguide.com/linktheft.htm
Also, here is a letter you can use or adapt.
Back to Top