Hi Xavier,
I just updated Joomla Joomla! 3.2.1 and latest version of Hikashop and Akebasubs. New installation. Started testing and got this error:
Invalid Regular period. You must specify valid values for the A3, P3, and T3 parameters for a subscription
Should I update the code in the current version of HIkashop with this patch?
In the file: "administrator/components/com_hikashop/classes/cart.php" can you replace the code:
if(!isset($product->subscription_level_id) || $product->subscription_level_id == '0'){
$noRecurring++;
}else{
//check the subscription duration in the subscription plugin
$subLevel[$i] = $product->product_subscription_id;
$recurring++;
}
By:
if(!isset($product->product_subscription_id) || $product->product_subscription_id == '0'){
$noRecurring++;
}else{
//check the subscription duration in the subscription plugin
$subLevel[$i] = $product->product_subscription_id;
$recurring++;
}
Thanks.