Hey guys, I have seen this mentioned here before but have not seen it mentioned about how to do it if you want your own products to do that. I am soon to be releasing a stream of products whice are all linked together so I want them all on the same account but want my affiliates to be able to send traffic to any page they want. If i have not made myself clear I want to be able to do exactly what this guy does http://www.turbulencetraining.com/affiliates/link-generator.php does anyone know the coding behind this so I can get my affiliates to send their traffic to a number of different pages on my site
Your affiliates need to pass in a parameter to the hoplink, then your pitch page (the one you set in CB) can read that parameter and redirect as appropriate. For example (PHP code)... <?php switch ($_GET["product"]) { case "product_1": header("Location: /product_1.html"); exit; break; case "product_2": header("Location: /product2/home.html"); exit; break; } ?> <html> ... your main product page ... Code (markup):
You can only have one "top level" hoplink per account. AFF.YOURACCOUNTNAME.hop.clickbank.net. if you have multiple products, then the person will be sent to a page where they can choose which product they want. otherwise, you have do a ?page=name system like the site you named. hth