cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Trial Amount, Duration and Removing Testing Submissions

Hello,

I have instegrated ARB for my joomla website I'm confused here for trial amount and duration please clear me.

I have to set dynamically free trial duration with $0 like 10 days, 15 days, 30 days, 40days, 60days, 120days,....365days after trial period ends it will automatically start recurring billing unlimited days once their trial periods will ends.

How will i pass variables to it Please guide me to doing that also How can i remove my tested subscriptions from ARB section of payment gateway admin:

Here is my variables i'm using for ARB Please Kindly guide me:

$subscription  = new AuthorizeNet_Subscription;
$subscription->name= "Membership";
$subscription->intervalLength  = "1";
$subscription->intervalUnit= "months";
$subscription->startDate   = $date
$subscription->totalOccurrences= "1";
$subscription->trialOccurrences= "0";
$subscription->trialAmount       = "0";
$subscription->amount  = "9.99";
$subscription->creditCardCardNumber= $creditcard;
$subscription->creditCardExpirationDate= $creditCardExpirationDate;
$subscription->creditCardCardCode  = $cvv;
$subscription->billToFirstName = $fname;
$subscription->billToLastName  = $lname;
$subscription->customerEmail   = $email;
$subscription->billToAddress   = $address;
$subscription->billToCountry   = $country;
$subscription->billToAddress   = $address;
$subscription->billToZip         = $zip;

ni3
Contributor
2 ACCEPTED SOLUTIONS

Accepted Solutions

instead of setting a tree trail duration of 10, 15 days, move the startDate to 10, 15 days ahead.

View solution in original post

RaynorC1emen7
Expert

It was done by myself i just started transaction via start date and problem was resovled.

View solution in original post

6 REPLIES 6

instead of setting a tree trail duration of 10, 15 days, move the startDate to 10, 15 days ahead.

RaynorC1emen7
Expert

This not posible set start with date. Can you please suggest me an way to pass accurate variables to it.

Can you please suggest me how will i pass variables with actual values to it?

You mean you don't know php?

You can hire Certified Developer.

It was done by myself i just started transaction via start date and problem was resovled

It was done by myself i just started transaction via start date and problem was resovled.