Hi Sorry if this is an obvious one. For free products, the member still gets a 'thank you -- your payment has been received' email showing a payment of '0.00'. Is there a way to stop this email being sent just for free products? Thanks Dave
You can do this. Edit file amember/common.inc.php find lines $p = $db->get_payment($payment_id); if ($p['data'][0]['ORIG_ID'] > 0) return; // don't sent for child payments replace to $p = $db->get_payment($payment_id); if ($p['amount'] == 0.0) return ; if ($p['data'][0]['ORIG_ID'] > 0) return; // don't sent for child payments