Yes, I actually found out that the USPS Tracking Number does in fact display wonderfully in the Order Notification Status, however, my current problem is that while that was very well thought out and looks great, there are 2 very important paces missing, and sadly, I don't think I have the coding expertise to add them (though I am desperately trying with little luck.
The two areas that I am referring to are having the Tracking Number (and clickable link to the USPS Webtools to look up the Tracking Status in the Front End "Order / Show.php" so that is displays on the Order Details Pages for those orders that have USPS Tracking, and creating a Clickable Link to the USPS Webtools within the Order Status Notification Emails.
I have been researching and I have found some snippits that you and Mohamed assisted other with, but doing it that way seems like reinventing the wheel because there is obviously core code that already grabs the usps_tracking data from the order table (usps_tracking is the custom field I created in the order table. The code I found goes like this.
Your Example Code to the person you were helping.
Tracking Number: <a href="http://wwwapps.ups.com/WebTracking/track?track=yes&trackNums=<?php echo $this->element->usps__tracking; ?>"><?php echo $this->element->usps_tracking; ?></a>
However, that code will not work in the Additional Info section "as is" II tried and I am missing parts even though I placed in inside a <?php ?> tag. But even is that were to work, it seems like I would just be recreating something that the system does (I believe in either the order_shipping_id or the order_product_shipping_id variables. Unfortunately I know that the shipping_id returns multiple variables, and I don't know which of them returns the usps_tracking (tracking number) since they are not in the language files as constants, so it's likely I would spend a long time trying to figure it out and the documentation doesn't go deep enough for me to figure out a way to use the code that was already part of the system.
If I were to use the method you suggested by writing the php code, well, that is a bit more involved then my skill set sadly, so I might just be out of luck there unless someone feel reeeeeeeeeeally generous. The problem is that my site can not go live until i have an easy solution for my customers to get, see, and tracking there packages with the USPS tracking number and having it on the Order Details Front End is my priority number one (along with adding the product thumbnails to the same same front end.
That does peek my curiosity though. Why add the things like product thumbnails and package tracking information to the Order Notification Emails but not have them in the Online Order Details Front End? I would have thought that would have been the first place to put them. Mind you, I am not complaining because the work gone into getting things where they are is a feat in and of itself and you guys just amaze me with your talent and willingness to share knowledge.
At this point, I am at a bit of a stand still until I can get these two issues resolved, and I don't want to take up your whole time with my issues. This is where I was mentioning before that having more live examples in the documentation might help people like me, as the support docs are written at somewhat of a high level that is a few steps above my skill set.
If you have an easy solutions, or reference material for me to learn from, I will dive right in as I have been doing and learn as much as I can. Thus far, I have (with your guys help) completed a very long task list of items that I originally had for escalation to my developer, but since he wants me to learn this, I have been learning as much as possible. Anyway, Cheers to you and I will go back under the hood and see what I can figure out here.
Thanks!