Quote:
Originally Posted by moonclamp
Has the recurring subscription issue been sorted out yet?
IE, I'd like the 5|12 option to "donate ?5 per month for 12 months", not ?5 every 12 months x 12 times (as is currently happening).
|
In the XML file change
Code:
$vsapp_ppurl .= '&p3='.$vsapp_get_amount[1];
to
Code:
$vsapp_ppurl .= '&p3=1';
&p3=1
So the 1 is how many months so you could change it to 2 3 etc. Of course if you do this is will make all subscription the same amount of months.
You can also change
Code:
$vsapp_ppurl .= '&t3=M';
to
Code:
$vsapp_ppurl .= '&t3=D';
And this would change it to days instead of months.
Just reimport the XML file through the admin panel and your done.
Hope that helps