Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by BlessIsaacola
Okay, there used to be a bug in Zen Cart where when order update is sent, it will show New Status twice. Ty Package tracker fixed this.
However in 1.3.5 this bug has been fixed and not Ty Package tracker is broken because when a Status Update is emailed using Ty Package tracker the New Status is blank in the email sent to customer without any update showing i.e. Cancelled, Shipped, etc.
Thanks for finding the bug. You are correct. On html emails, the status will be blank. Text e-mails are not affected. I will fix it in the next update. This is an easy fix. If you want to fix it now, you need to edit the file admin/ty_package_tracker.php
Look for the following 3 lines (line 114-116)
Code:
$html_msg['EMAIL_TEXT_STATUS_COMMENTS'] = $notify_comments;
$html_msg['EMAIL_TEXT_STATUS_UPDATED'] = str_replace('\n','', EMAIL_TEXT_STATUS_UPDATED);
$html_msg['EMAIL_TEXT_STATUS_LABEL'] = '<strong>New status:</strong>';
Replace the 3 lines with this
Code:
$html_msg['EMAIL_TEXT_STATUS_COMMENTS'] = nl2br($notify_comments);
$html_msg['EMAIL_TEXT_STATUS_UPDATED'] = str_replace('\n','', EMAIL_TEXT_STATUS_UPDATED);
$html_msg['EMAIL_TEXT_STATUS_LABEL'] = str_replace('\n','', sprintf(EMAIL_TEXT_STATUS_LABEL, $orders_status_array[$status] ));
This fix should ONLY be use if you are running Zencart 1.3.5. Do not use the code on version 1.3.0.2 (or earlier) or else you will get the double status as noted above.
Ty.
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Thanks for the prompt response and the fix. It works great now.
Great Mod!
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
A new update was added to the download section for Zencart 1.3.5. This version will also work with Zencart 1.3.0 or later.
http://www.zen-cart.com/index.php?ma...roducts_id=167
The fixes are:
1. Rename files from ty_package_tracker.php to tracker.php.
The php files were rename to make it more User Friendly.
2. Fixed the blank New Status on html e-mails.
On ZC 1.3.5 html emails, the new status will show a blank status. Text emails were unafffected.
3. Moved Tracking ID info to comment box for Customer Order History. (Admin unchanged.)
We have people complainting the Status History & Comments section was overlapping or stretching too far right. The tracking id column was removed and will be display in the comment box. This should minimize the problem.
4. Email text changed.
The wording was slightly changed. To customize the e-mail, edit the files in admin/tracker.php Edit the TY2 BEGIN section (line 87-97).
Ty.
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
I added this to 1.3.5, and the sumbit button under orders is not showing up, I have taken screenshots for you to see it directly also, I changed the defines in filenames .php and I still get nothing but a return to the main page when I go to view an order that has been placed.
Any idea what is causing either of this?
ScreenShot - http://www.wilson-cellular.com/ty_shot.jpg
Thanks in advance
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
might want to add the install coding for new users as well, as it is it only contains the updates.
Just a note :)
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by knuckle-101
I added this to 1.3.5, and the sumbit button under orders is not showing up, I have taken screenshots for you to see it directly also, I changed the defines in filenames .php and I still get nothing but a return to the main page when I go to view an order that has been placed.
Any idea what is causing either of this?
ScreenShot -
http://www.wilson-cellular.com/ty_shot.jpg
Thanks in advance
By the screenshots, I can see that you are missing the
/admin/includes/languages/english/tracker.php file
The submit buttons should show up. My guess is that the file on your web server is incomplete file (probably due to FTP). FTP the files from the module to your server again and overwrite the old files.
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
It seems UPS has changed their tracking url. Clicking on the tracking number no longer pre-fills the number into the UPS website. Has anyone figured out the new url format for this to work?
edit: I found a recent UPS email that had the format. Plug this into Admin>config>ty package tracker
http://wwwapps.ups.com/WebTracking/p...n_US&tracknum=
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Thanks for posting the new tracking link!
Ty.
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
No trouble.
Question, I've got a site using version 1.2 If I follow the upgrade instructions, will previous orders retain their tracking data?
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by jeking
No trouble.
Question, I've got a site using version 1.2 If I follow the upgrade instructions, will previous orders retain their tracking data?
ALWAYS back up the database before upgrading.
The tracking information is saved in the database. If you do the upgrade correctly, all your orders, customers info, products, etc... and tracking id should carry over to the new version.
Ty.