Hi,
Indeed I missed it. Thanks to edit the file: plugins\hikashop\akeebasubs\akeebasubs.php
And replace the line:
$jDate = new JDate(strtotime($old->publish_down));
$jDown = new JDate(strtotime($old->publish_down) + (86400 * $level_duration * $result->order_product_quantity));
By:
if(strtotime($old->publish_down) < time()){
$jDate = new JDate(time());
$jDown = new JDate(time() + (86400 * $level_duration * $result->order_product_quantity));
}else{
$jDate = new JDate(strtotime($old->publish_down));
$jDown = new JDate(strtotime($old->publish_down) + (86400 * $level_duration * $result->order_product_quantity));
}
That should do the job.