[h=3]
Step 2: Creating Upsell Payment Links[/h] Now that you’ve created your upsell Pitch Pages, it’s time to add accept and decline payment links to them. An upsell payment link is the same as any other payment link, with the exception of these two parameters: cbur (response type) and cbf (session identifier).
The cbur response type parameter tells ClickBank if the customer has accepted or declined your upsell offer. Therefore, your upsell Pitch Page must include two payment links, one with an accept (a) value and the other with a decline (d) value.
For example, the accept button should use the following payment link format:
http://3.somenick.pay.clickbank.net/?cbur=a
The decline button would use the following payment link format:
http://3.somenick.pay.clickbank.net/?cbur=dAdvanced Users:
The cbf session identification parameter allows you to offer upsells to customers with disabled browser cookies (approximately 10% of customers). You are
not required to use the cbf session identification parameter; however, if it is not used, customers with disabled cookies will be redirected to the standard order confirmation page, rather than your first upsell Pitch Page.
When the customer makes a purchase, ClickBank will pass the cbf parameter to your first upsell Pitch Page. You must then capture the parameter and pass it back to ClickBank in the payment link. This may be accomplished using a dynamic programming language such as perl, php, jsp, asp, .net or others.
If you are not experienced with dynamic programming, we recommend hiring an experienced developer for assistance.
An example of how to retrieve the parameter using php is: $_REQUEST.
Example payment links:http://3.somenick.pay.clickbank.net/?cbur=a&cbf=<parameter passed>
http://3.somenick.pay.clickbank.net/?cbur=d&cbf=<parameter passed>
Comments
I really need your help i have looked anywhere on the net but I can't find the right answer.
Please help me with this..
Woah, man the fix was super simple.
Simply, just capture the string via Query String function.
In short, page needs to be php
<?php
$cbf = $_GET;
echo '<a href="http://3.somenick.pay.clickbank.net?&cbur=a&cbf='. $cbf .'">Buy this shizzle</a>';
?></p>
<?php
$cbf = $_GET;
echo '<a href="http://3.somenick.pay.clickbank.net?&cbur=d&cbf='. $cbf .'">Decline this shizzle</a>';
?>