Coinbase Commerce on Recurring Subscriptions

Discussion in 'Pre-Sales Questions' started by ryan_lenahan, May 7, 2020.

  1. ryan_lenahan

    ryan_lenahan New Member

    Joined:
    Nov 14, 2019
    Messages:
    2
    Hello,

    I see some aMember users are able to enable CoinBase Commerce for all products including those with recurring subscriptions (Example, ProxyRack.com) however when we tested the demo panel the option for Crypto payment disappears with anything that has a recurring payment.

    I understand the crypto does not offer automatic billing, what I still want is to allow manual crypto payments for recurring subscriptions.

    Any ideas on how this is achieved?
  2. caesar

    caesar aMember Pro Developer Staff Member

    Joined:
    Oct 16, 2009
    Messages:
    2,295
    Hello,

    It is possible to get first payment but it is not possible to get subsequent payments automatically in case of crypto payments
    (due to its technology). So we hide these options by default.

    It is possible to show it if necessary.

    Best Regards.
  3. chronoshift

    chronoshift Member

    Joined:
    Jul 23, 2007
    Messages:
    61
    This is really annoying and ILLOGICAL, I had to hard edit this previously, what's the easiest way to just get it to SHOW?
  4. caesar

    caesar aMember Pro Developer Staff Member

    Joined:
    Oct 16, 2009
    Messages:
    2,295
    @chronoshift you need to edit payment plugin file (You can find it in folder application/default/plugins/payment/)
    and replace code:
    PHP:
    public function getRecurringType()
    {
        return 
    self::REPORTS_NOT_RECURRING;
    }
    with
    PHP:
    public function getRecurringType()
    {
        return 
    self::REPORTS_REBILL;
    }

Share This Page