I successfully installed ADMIN NOTES on my version 1.3.8 site and it worked wonderfully HOWEVER...
After that, I also installed the EDIT ORDERS module.
EDIT ORDERS now works perfectly but ADMIN NOTES have completely disappeared.
Any help would be welcomed and appreciated.
Here's a link to the website if it helps http://www.craftmagick.com
I tried to include a copy of my entire ADMIN/ORDERS.PHP file but it was too long and I wasn't sure WHICH sections would be necessary for someone to view so here is what I think is the part relating to ADMIN NOTES:
PHP Code:
// BOF Admin order notes
case 'update_admin_comments':
$oID = zen_db_prepare_input($_GET['oID']);
$comments = zen_db_prepare_input($_POST['admin_comments']);
$order_updated = false;
$db->Execute("insert into " . TABLE_ADMIN_COMMENTS . " (orders_id, date_added, comments) values ('" . (int)$oID . "', now(), '" . zen_db_input($comments) . "')");
$order_updated = true;
if ($order_updated == true) {
$messageStack->add_session('Admin Comments Updated', 'success');
} else {
$messageStack->add_session('Admin Comments Not Updated', 'warning');
}
zen_redirect(zen_href_link(FILENAME_ORDERS, zen_get_all_get_params(array('action')) . 'action=edit'));
break;
// EOF Admin order notes
If you need to see other parts of the orders.php file just let me know.
Undying Gratitude to anyone that can help... 
Zencart ROCKS!
Bookmarks