Page 1 of 1

Recurring Subscriptions for $0 Item

Posted: Tue May 01, 2018 11:34 pm
by HealthWyze
I want to have a product in my store for recurring donations. The base product should be "zero", then they should be able to choose from a drop-down list, a variety of options ($10/month, $20/month, etc.). I set up recurring payments in accordance with this idea. However, when they go to checkout, the item price is still zero, when the subscription price should be added to the base price. Does anyone have a fix for this? An extension? Anything?

Here are a couple of screenshots to help demonstrate the issue:

Image

Image

Re: Recurring Subscriptions for $0 Item

Posted: Wed May 02, 2018 7:55 am
by IP_CAM
Well, this would probably require a Pro, to solve it, you should better have
placed it in the commercial Section. But some Extensions possibly exist for
this, as it looks.
Good Luck ;)
Ernie
---
Product Subscriptions - Recurring Payments
https://www.opencart.com/index.php?rout ... on_id=9890
---
Front End Recurring Product Subscription
https://www.opencart.com/index.php?rout ... n_id=30725
---

Re: Recurring Subscriptions for $0 Item

Posted: Wed May 02, 2018 11:36 pm
by HealthWyze
Anybody who finds this thread in the future would probably benefit from knowing how to fix this. In Opencart 2.3.0.2, you must edit this file:
system/library/cart/cart.php

Replace:

Code: Select all

'price'           => ($price + $option_price),
 'total'           => ($price + $option_price) * $cart['quantity'],
With this:

Code: Select all

'price' => ($price + $recurring['price'] + $option_price),
'total' => ($price + $recurring['price'] + $option_price) * $cart['quantity'],
Be aware that you need to have a trial period if you do this, else the customer will be double charged (once for the price of the product, once for the subscription).

Re: Recurring Subscriptions for $0 Item

Posted: Sun Sep 09, 2018 10:49 pm
by PiBROS
Thanks!
This tip was indeed extremely helpful for me where the selling price depends on the chosen recurring profile.
So I changed system/library/cart/cart.php to:

Code: Select all

'price' => ($recurring['price'] + $option_price),
'total' => ($recurring['price'] + $option_price) * $cart['quantity'],