Hello,
We performed an investigation and the recurring price should not contain the discount price.
For a reason that I can't understand right now, the detection of the discount during the recurring value processing is not working properly.
Please edit the file "administrator/components/com_hikaserial/classes/cart.php" and replace the content
if($fullcart) {
unset($order_products);
return;
}
By
if(false && $fullcart) {
unset($order_products);
return;
}
in order to force the processing of the recurring price using the total of the products (and not using the order price).
Regards,