-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
vlowrance84, your language file is not loading this:
includes/languages/YOUR_TEMPLATE/english.php
Line 688 - 689
//text for Ty Package Tracker sidebox heading
define('BOX_HEADING_TRACK_ORDERS', 'Previous Orders');
Be sure the file exists on the server with the additional define text within your template override.
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Working on finalizing v3.1.4 of Ty Package Tracker.. I've created a Github repository for TYPT: https://github.com/DivaVocals/zen_TyPackageTracker
For those familiar with how Github works, the master branch is current version available in the downloads (v3.1.3). See the v3.1.4 branch for the upcoming release. Any version in development should be considered BETA and NOT for use in a live shop. There is NO SUPPORT on this forum for any BETA versions of TYPT..
Ty Package Tracker for Zen Cart v3.1.4
Changelog
Version 3.1.4 - 09/17/2013
- Updated tracking entry code (lhungil)
- Another fix to the sidebox code to HTML fix validation errors (colosports)
- Moved sidebox defines from includes/languages/YOUR_TEMPLATE/english.php into a new extra_definition file (includes/languages/english/extra_definitions/YOUR_TEMPLATE/track_orders.php)
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by
colosports
Go to Admin->Configuration->Ty Package Tacker
Change the Carrier Name and use this as the tracking link
Code:
http://wwww.sda.it/SITO_SDA-WEB/dispatcher?invoker=home&LEN=&execute2=ActionTracking.doGetTrackingHome&button=Vai&id_ldv=
The v3.1.4 readme will be updated to include the SDA Express Courier URL. As the community continues to share other carrier URLs, I will update the readme to include them.
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Please don't bite my head off for asking this question. I have read through the plugin description and a lot of this thread but I can't seem to find the actual answer. I might have missed it.
This plugin says it allows customers to track there orders. But does it allow customers to purchase tracking through zen cart?
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
No. This allows you to enter the tracking number as part of updating the order status.
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by
Mega Moonshine
Okay, here is what I did to fix the problem exactly:
In the file, init_typt_config.php where it starts inserting into the CONFIGURATION table, I added in RED (in every $sql line):
Code:
$sql = "INSERT INTO ".DB_PREFIX."configuration VALUES (val 1, val 2, val 3, val 4, val 5, val 6, val 7, val 8, val 9, val 10, val 11, 'General')";
Once I did that, the install went smoothly and without a hitch. Whew!
I had this exact thing happen to me and I am so mad. I tried to follow your instructions, but can you show me exactly what you did. I tried inserting the , 'General' as you instructed, but I still cannot login to my admin. I know that add on FEC is to blame and I need some help fixing it. Any advise would be fantastic. Thank you!
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by
MyCoolHats
I had this exact thing happen to me and I am so mad. I tried to follow your instructions, but can you show me exactly what you did. I tried inserting the , 'General' as you instructed, but I still cannot login to my admin. I know that add on FEC is to blame and I need some help fixing it. Any advise would be fantastic. Thank you!
Actually I figured it out, I was just putting them in the wrong space. Your suggestion does work. For an example, I started the editing on line 41 of the ty tracker files/install_files/YOUR_ADMIN/includes/init_includes/init_typt_config.php. I added , 'General' at the very end of the line but before )";
PHP Code:
$sql = "INSERT INTO ".DB_PREFIX."configuration VALUES (NULL, 'Package Tracking - Carrier 1 Status', 'CARRIER_STATUS_1', 'True', 'Enable Tracking for Carrier 1<br /><br />Set to false if you do NOT want Carrier 1 to be displayed on Admin and Customer page.', '".$typt_configuration_id."', 90, now(), now(), NULL, 'zen_cfg_select_option(array(\'True\', \'False\'), ', 'General')";
$db->Execute($sql);
I am just noting this for any future person who had the same problem. This is all resulting from installing Fast & Easy Checkout module - grrrr.
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Actually this one is on me for using a "blind" add to the config table.. because Numinix modules like FEC and Google Product Search add a column to the config table my "blind" add doesn't account for the additional column.. Will be fixed in the next release (avail on Github)
Quote:
Originally Posted by
MyCoolHats
Actually I figured it out, I was just putting them in the wrong space. Your suggestion does work. For an example, I started the editing on line 41 of the ty tracker files/install_files/YOUR_ADMIN/includes/init_includes/init_typt_config.php. I added
, 'General' at the very end of the line but before
)";
PHP Code:
$sql = "INSERT INTO ".DB_PREFIX."configuration VALUES (NULL, 'Package Tracking - Carrier 1 Status', 'CARRIER_STATUS_1', 'True', 'Enable Tracking for Carrier 1<br /><br />Set to false if you do NOT want Carrier 1 to be displayed on Admin and Customer page.', '".$typt_configuration_id."', 90, now(), now(), NULL, 'zen_cfg_select_option(array(\'True\', \'False\'), ', 'General')";
$db->Execute($sql);
I am just noting this for any future person who had the same problem. This is all resulting from installing Fast & Easy Checkout module - grrrr.
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
will it work on zen-cart-v1.5.3
-
Re: Track Package from FedEx, UPS, Postal, DHL, etc..
Quote:
Originally Posted by
tnjon
will it work on zen-cart-v1.5.3
with some tweaks yes :)