In the main admin panel, it shows # of completed payments.. but includes free signups. Is there a way to modify this so that completed payments includes only payments > 0.0?
in /amember/admin/index.php you need to modify this: $q = $db->query("SELECT FROM_DAYS(TO_DAYS(tm_added)) as date, count(payment_id) as added_count, sum(amount) as added_amount FROM {$db->config[prefix]}payments p WHERE tm_added BETWEEN '$beg_tm' AND '$end_tm' GROUP BY date "); to $q = $db->query("SELECT FROM_DAYS(TO_DAYS(tm_added)) as date, count(payment_id) as added_count, sum(amount) as added_amount FROM {$db->config[prefix]}payments p WHERE tm_added BETWEEN '$beg_tm' AND '$end_tm' and amount >0 GROUP BY date "); and this: $q = $db->query("SELECT FROM_DAYS(TO_DAYS(tm_completed)) as date, count(payment_id) as completed_count, sum(amount) as completed_amount FROM {$db->config[prefix]}payments p WHERE tm_completed BETWEEN '$beg_tm' AND '$end_tm' AND completed>0 GROUP BY date "); to $q = $db->query("SELECT FROM_DAYS(TO_DAYS(tm_completed)) as date, count(payment_id) as completed_count, sum(amount) as completed_amount FROM {$db->config[prefix]}payments p WHERE tm_completed BETWEEN '$beg_tm' AND '$end_tm' and amount >0 AND completed>0 GROUP BY date ");