Quote Originally Posted by DivaVocals View Post
Finally was able to replicate this consistently.. think I've got a solution.. standby..

Edited to add:
Find line 149:
PHP Code:
if (isset($_POST['notify_comments']) && ($_POST['notify_comments'] == 'on') && zen_not_null($comments)) { 
replace with:
PHP Code:
if (isset($_POST['notify_comments']) && ($_POST['notify_comments'] == 'on')) { 
Let me know if that works..
Ah I bet that will work, I was just coming to post that I narrowed it down and realized that if I put an order comment, the tracking link comes through, but if I don't put a comment, the tracking link does not show up. So I bet your solution above will do the trick I will give it a try tomorrow and let you know. Thank you!