Quote:
Originally Posted by whitey06
Ok installed and all working now, that did the trick, dont see any issues, did communication test and all was good
Forgot to mention in my last post that for VB4, the template fetch command in the php file needs changing to the correct format or an error message comes up on the subscriptions page, I replaced it with the following:
PHP Code:
$templater = vB_Template::create('subscription_payment_gcheckout');
$templater->register('cost', $cost);
$templater->register('currency', $currency);
$templater->register('item', $item);
$templater->register('no_shipping', $no_shipping);
$templater->register('settings', $settings);
$templater->register('subinfo', $subinfo);
$templater->register('timeinfo', $timeinfo);
$templater->register('userinfo', $userinfo);
$form['hiddenfields'] .= $templater->render();
Also for anyone that uses it, only use it for the currency that your checkout account allows, i.e. USD for US & GBP for UK.
But all in all, great mod and much needed in VB 
|
good call, I forgot that vB4 changed their template formats
thanks for the code, I'll have to add it into a vb4 version for the future (I don't have a vb4 forum to test it on right now unfortunately)