I installed Super Orders 2.0 rev45 on a client's Zen Cart 1.3.7 install. Things seem to be working fine except for one thing...

Credit Card orders (Authorize.net SIM) still show a balance due and that the amount paid is $0.00. Also, I guess PayPal IPN payments aren't showing up either - I read that this isn't supported yet.

I DO have the following in the catalog order.php class file.

PHP Code:
$insert_id $db->Insert_ID();
// BEGIN Super Orders edit
// add CC data as a line item to SO payment system
if (zen_not_null($this->info['cc_type']) || zen_not_null($this->info['cc_owner']) || zen_not_null($this->info['cc_number'])) {
require(
DIR_WS_CLASSES 'super_order.php');
$so = new super_order($insert_id);
$so->cc_line_item();
}
// END Super Orders edit 
Any ideas what could be going wrong? I read through most of the posts and saw a few people having this problem, but didn't see if they fixed it.

Thanks!