For ClickBank Vendors Only
I did this recently and it gave a windfall of new sales.
Here’s a trick when selling through ClickBank. I think you can also do this with other payment processors and affiliate script. You just need to find a way to make them work. Maybe you can contact your affiliate script company and ask them about it.
Anyway here it is … First let me tell you how this works.
You know everybody are always looking for something new to sell. And they always want to promote something great to their readers, right? How about doing a discount specifically to their readers. But this discount has to be a limited-time offer. You cannot do this for the whole year. I will tell you more about the time-planning of this later.
For example, you have a friend, Ted. You email / call up Ted and say, “Ted, I have a new product that I’d like to do a special discount for your readers.”
First of all, that would really get your potential JV partner’s attention. With this method, I am sure that you’ll close more JV deals.
When Ted agrees, you create a new page, specifically for Ted’s readers. It can say something like …
“This page is for Ted’s friends only. Instead of paying a full amount of $97, you can get [YOUR PRODUCT] for just $47. But this offer is only available until [DATE]. So if you want to get this, get it NOW” (and then continue with your salesletter)
So how do you get Ted’s readers to this page? I know, you can only define URL for your website in ClickBank. Don’t worry about that. We can use a simple PHP script and put that at the top of your “index.php”. I am assuming that you use PHP in your website. If you are not, then maybe you’d like to rename your index.html or index.htm into index.php, and delete the previous file.
If you are using something else, ASP or CGI or anything like that, find a way to translate my PHP code to your chosen language. Here’s the code. Oh yeah, you need Ted’s ClickBank ID for this. In this example, Ted’s ClickBank ID is ted.
if ($_REQUEST['hop'] == 'ted')
{
header('Location: http://www.productwebsite.com/tedpage.php');
exit();
}
?>
How about some explanation.
OK … we’ll do your realize that then when you send visitors using your ClickBank hoplink, ClickBank will always send an extra tagging to the URL. Something like “?hop=ted”
Well, you can use that. If you see that your website receives that “?hop=ted”, you know that Tim is the one sending them. And instead of letting them land on your front page, you redirect them to a different page, the one that you created earlier for Tim’s readers.
Now, about the pricing. In ClickBank, you can always define a number of products prices, and their thank you page. So you use this. Your main product is product number 1. In this example, you priced product 1 at $97. Create another product priced at $47 and use the same thank you page, because customers will get the same thing anyway.
With these products, you use the following ClickBank pay links.
Product 1 ($97): http://1.YOURCBID.pay.clickbank.net
Product 2 ($47): http://2.YOURCBID.pay.clickbank.net
Obviously, pay link for product 1 is used on index.php. And pay link for product 2 is used at Ted’s special discount page.
You must think that we’re done here, right? Well, a few cool tricks for you … it’s about timing your email.
When doing the email announcement, you want Ted to email his readers saying that this is a 48-hour discount. And ask Ted to tell you when he did his first mailing so you can start your clock. After the 48-hour discount is over, you tell Ted to write one last mailing with a subject line “Last Chance — Closing in 24 hours.”
Do you want to know the result of this? With the last-chance email, you can actually pull in as much orders as the first day.
So the offer actually runs for 72 hours. You may plan this beforehand with Ted if you want. I normally do. First I write an email about the discount for their readers. When they reply, I write all the details of how I want it to be done. I told them to tell their readers it’s a 48-hour discount. And then I tell them to write the last chance email after the 48-hour is over.
When everything is done, I pull down the offer page.
What you need to do now is find your JV partners. Start with people you’ve had interaction with in the past. Maybe in forums or what not. It’s easier that way.
Oh yeah … what if you have more than one JV partners at a time. Well, you can alter the code a bit like this.
if ($_REQUEST['hop'] == 'ted')
{
header('Location: http://www.productwebsite.com/tedpage.php');
exit();
}
elseif ($_REQUEST['hop'] == 'jva')
{
header('Location: http://www.productwebsite.com/jva.php');
exit();
}elseif ($_REQUEST['hop'] == 'jvb')
{
header('Location: http://www.productwebsite.com/jvb.php');
exit();
}
?>
Alright … have fun. Go make money ….
14
Comments
David Lovelace
Kidino,
I loved this tip. I only knew of one way to do this using Adrian Ling’s ezClickMate script. But if I’m in a hurry, I can code my pages with your method.
As a “techy marketer”, I love these kind of things. Thanks for sharing.
Dave
Kidino
Yeah, this is cool isn’t it?
You can also use this to have something like ezClickMate – one CB ID, products, multiple websites.
All you do is get your affiliates to do use a hoplink like:
http://kidino.vendor.hop.clickbank.net/?pid=X
pid refers to your product ID in ClickBank. And ClickBank will pass a tagging (query string) like below:
http://yourwebsite.com/?hop=kidino&pid=X
And you can have an index.php that parse the query string. You can have a code like:
< ?php
if ($_REQUEST['pid'] == 1)
{
header('Location: http://product-1.com‘);
}
elseif ($_REQUEST['pid'] == 2)
{
header(‘Location: http://product-2.com‘);
}
else
{
header(‘Location: http://default-product.com‘);
}
?>
Don’t forget to use the right pay link in each websites.
Mike Pepper
This is good stuff, and very usefull. I really ought to get my head around PHP & scripting.
Using this kind of tip is probably much more productive than spending on yet another ebook or membership site.
William
Wow, thanks for sharing this wonderful tip. Just in time when I’m trying to set up some JVs.
Btw, I also saw some script increasing the pricing every second/minute. For example, you’re selling something at $47, your offer price is $17 and increasing every min (maybe it’ll take 1 week to reach $47). Will this method work?
www.TrafficMadeEasy.com
Another great tip from ‘The Kid’!
Thanks Kildino, i’ll certainly make use of that one.
regards
Roy
James Burchill
Kidino,
Nicely done! Your tip got me thinking… I used to redirect people to separate pages and sub sites depending on where they came from using a javascript snippet. Basically they’d land on my main page and then the script would look to see the referring address and then decide where to send them.
Your idea was about offering individuals a special promo for a product or service – very cool. If the referrer information is available, you can redirect visitors to “domain” special offer pages.
Regards,
JamesBurchill.com
John
Kidino,
Great tip. I posted your link in one of the forums I participate in.
To add to what you have said, php redirects are excellent in that they will function all the way across the board. Javascripts will rely on the browser being java enabled and HTML meta refreshes are messy.
I love the flexibility of PHP. There’s almost no limit to what you can do with it.
Well done,
John
Michelle MacPhearson
Fantastic tip Kidino – thanks!
By the way, is it “Ted” or “Tim”? :-)
-Michelle
Thalia
Excellent tip as usual, Kidino. Will have to give it a try soon.
:) Thalia
Kidino
Yeah Michelle. I got that a bit mixed up. You can choose one that you like best and go with that. ;)
Guys and Gals, thanks for the comments. I am glad that you like them.
Stephan Iscoe
Haha!
I was laying awake last night trying to think of
a quick and dirty way to do a one-off promotion
with a fellow marketer, and here you are with the
perfect solution!
Many thanks my friend -
Tell the Universe what you need, and it appears :)
Best of Success,
Stephan
Parlay Rey
Awesome tip, thank you! Query: will this work for alternatives like PayDotCom as well?
ToonChooi
Kidino
Great tips, especially you also include the method how to use this trick with Adrian’s esayclickmate as well.
Thanks for sharing
ToonChooi
Ryan Elward
Thanks for the tip. Very impressive.
Leave a Reply