Sure, Jeff, it's possible to add include IP address of donors in CSV file, please following below steps
1. Open file: root -> components -> com_jdonation -> helper -> data.php (by notepad or ftp software)
2. Find:
Code:
$fields[] = JText::_('Transaction ID');
and add this below
Code:
$fields[] = JText::_('IP Address');
3. Find:
Code:
$fields[] = $r->transaction_id;
and add this below
Code:
$fields[] = $r->ip_address;
Good luck
Dam