After digging through the code a bit, it looks like this is because the Credit system does not support recurring or trial subscriptions.
public function supportRecurring()
{
return false;
}
public function supportTrial()
{
return false;
}
Any plans to implement this in the future?
I'm going to hack these to true right now to see what happens. Would appreciate some guidance from Moo here, though, to let me know if I'm crazy and going to run into a bunch of problems.
Thanks!