Hi Christian,
Thanks for looking into this for me.
Just so you know I’m generating this buy now link dynamically in the template. So I suspect the solution is just a php generated link (I don’t need to rely on shortcodes).
I’ve been reading the documentation at ccbill: http://www.ccbill.com/cs/manuals/CCBill_Dynamic_Pricing.pdf
So I think the solution will be something like this:
<?php
$clientAccnum = "######";
$clientSubacc = "0001";
$formName = "###cc";
$formPrice = "##.##";
...
?>
<?php
echo '<a href="https://bill.ccbill.com/jpost/signup.cgi?clientAccnum='.$clientAccnum.'&clientSubacc='.$clientSubacc.'&formName='.$formName.'&formPrice='.$formPrice.'...">Buy Now</a>';
?>
I’m sure there are more variables needed and I’m not quite sure how to generate the MD5 hash for the formDigest as referred to in the ccBill documentation but I suspect it has something to do with the TripleDES key.
Hopefully you and/or Jason will be able to help me fill in the blanks.
Thank you!
-
This reply was modified 4 years ago by
Some Dude.