Page 1 of 2

Monthly subscription feature for products

Posted: 20 Aug 2017, 02:10
by sumit kaushik
Hello,
I am using aimeos with laravel 5.4 and want to integrate subscription feature for products. Could you please suggest me how to integrate this? is Aimeos has pre-define feature for subscription management??
Please help me..

Re: Monthly subscription feature for products

Posted: 20 Aug 2017, 17:00
by nos3
On https://aimeos.com/support/ we've added subscription products like this:
Each product has a minimum term of 12 month and that's the default price shown in the basket. Additionally, we've defined a price per month, which is shown on that page. If a customer buys a subscription, getting the money a year later for the next year is a manual task as Aimeos can't get the money automatically.

Re: Monthly subscription feature for products

Posted: 21 Aug 2017, 10:49
by sumit kaushik
Thanks for your answer.
I have created variations for product for subscription. But it is not showing selected variations' s price on change of drodown as shown in your reference link.
Please suggest.

Re: Monthly subscription feature for products

Posted: 21 Aug 2017, 16:00
by aimeos
If your selection product is correctly configured in the admin interface, please have a look at the frontend if the feature works with the default templates. Changing the price of product variants is implemented in Javascript and depends on the correct CSS classes.

Re: Monthly subscription feature for products

Posted: 30 Sep 2017, 12:16
by sumit kaushik
Hello,

It is showing null array for price
$prices = $product->getRefItems( 'price', null, 'default' ); in selection-default.php

Re: Monthly subscription feature for products

Posted: 30 Sep 2017, 12:37
by aimeos
You need a price added to each variant article and add the lowest price also to the selection product. The minimum quantity should be 1 for all prices. If you don't add a price to each variant, the price of the selection product will be used.

The price will be exchanged to that of the variant product if all variant dimensions have been selected.

Re: Monthly subscription feature for products

Posted: 30 Sep 2017, 13:37
by sumit kaushik
I have added prices for all variants, but still it is showing blank array.

Re: Monthly subscription feature for products

Posted: 30 Sep 2017, 13:50
by aimeos
Is the currency of the prices the same as the default currency you are using or the selected currency?

Re: Monthly subscription feature for products

Posted: 30 Sep 2017, 14:11
by sumit kaushik
Yes, INR (Indian Rupee) is my default currency.

Re: Monthly subscription feature for products

Posted: 01 Oct 2017, 03:40
by sumit kaushik
Also please suggest me how i can notify user about their subscription payments? For example if user subscribe for 2 months then he/she will get an email about their due payments after 2 months.