Page 68 of 100 FirstFirst ... 1858666768697078 ... LastLast
Results 671 to 680 of 998
  1. #671
    Join Date
    Aug 2007
    Location
    Fort Worth, Texas, United States
    Posts
    177
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Quote Originally Posted by letsmod View Post
    I recently upgraded this module and followed alls teps perfectly a few times

    the sidebox title display error "BOX_HEADING_TRACK_ORDERS "

    can see at - http://www.vgcrepairs.biz/zen_store/
    I have the same problem. I found the text in track_orders.php but no where else. If I change it, it removes the box. Any suggestions?

  2. #672
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Has anyone replaced the hardcoded text with defined text? I need to do this for my multilanguage site, but am not great with php, so I am having trouble with the syntax. If anyone can help me put the defined variables in correctly, I'd appreciate it.

    Original code:

    Code:
    if (zen_not_null($track_id1)) { $notify_comments .= "\n\n<br /><br />Your " . CARRIER_NAME_1 . " Tracking ID is " . $track_id1 . " \n<br /><a href=" . CARRIER_LINK_1 . $track_id1 . ">Click here</a> to track your package. \n<br />If the above link does not work, copy the following URL address and paste it into your Web browser. \n<br />" . CARRIER_LINK_1 . $track_id1 . "\n\n<br /><br />It may take up to 24 hours for the tracking information to appear on the website." . "\n<br />"; }
    in admin/includes/languages/english/order_status_email.php I have defined:

    Code:
    define('TY_PT_1','Your');
    define('TY_PT_2','Tracking ID is');
    define('TY_PT_3','click here');
    define('TY_PT_4','to track your package.<br /><br />If the above link does not work, copy the following URL address and paste it into your Web browser.<br/><br/>');
    define('TY_PT_5','It may take up to 24 hours for the tracking information to appear on the website.');
    Can anyone give me the correct statement to replace the hardcoded text with the defined text?

    Thanks!

    Quote Originally Posted by westerlind View Post
    Language Customization
    Hi and thank you for every thing!

    Future request:
    I would like two files to be changed:
    • 1st includes/templates/sideboxes/tpl_track_orders.php line 21 > Track Your Orders >> put this text in to language file.

    • 2nd includes/extra _datfiles/tracker.php > put the box heading into the language file.


    This would be helpful when You run a shop with more than one language.

  3. #673
    Join Date
    Aug 2012
    Posts
    331
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Hello,

    Any way to have the sidebox show only if user is logged in?

    i tried searching the thread but didn't find anything, if there's a post about it please forgive me, and advise

    Thanks

  4. #674
    Join Date
    Aug 2012
    Posts
    331
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Hello,

    i'm also trying to get the sidebox in a multilingual environment, i was able to add the header translation to the french.php file but where can i add a translation for the "Track your orders" link?

    Thanks everyone!

  5. #675
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Here's what I ended up doing to make the emails work in my multilanguage shop. I don't use the sidebox, so sorry, I can't help there.

    For each of your languages, in admin/includes/languages/YOUR_LANGUAGE/order_status_email.php

    Add to the bottom (replace the defined text with your language as necessary):

    Code:
    define('TY_PT_1','Your');
    define('TY_PT_2','Tracking ID is');
    define('TY_PT_3','Click here');
    define('TY_PT_4','to track your package.<br /><br />If the above link does not work, copy the following URL address and paste it into your Web browser:<br/>');
    define('TY_PT_5','<br><br>It may take up to 24 hours for the tracking information to appear on the website.');
    In admin/includes/functions/extra_functions/common_orders_functions.php find // TY TRACKER 4 BEGIN

    Replace the whole section with this:

    Code:
    // TY TRACKER 4 BEGIN  ----------------------------------------------
    
      $status = $status_info->fields['orders_status_id'];
      $track_id1 = $status_info->fields['track_id1'];
      $track_id2 = $status_info->fields['track_id2'];
      $track_id3 = $status_info->fields['track_id3'];
      $track_id4 = $status_info->fields['track_id4'];
      $track_id5 = $status_info->fields['track_id5'];
    
      if (zen_not_null($status_info->fields['comments']) && $status_info->fields['comments'] != '' && $_POST['notify_comments'] == 'on') {
    
        $notify_comments = EMAIL_TEXT_COMMENTS_UPDATE . $status_info->fields['comments'] . "\n\n<br><br>";
    
      }
    
        if (zen_not_null($track_id1)) { $notify_comments .= "\n\n".TY_PT_1.' '.CARRIER_NAME_1."\n".TY_PT_2.' '.$track_id1."\n\n<br/><br/> <a href=".CARRIER_LINK_1.$track_id1.">".TY_PT_3."</a>"."\n".TY_PT_4."\n".CARRIER_LINK_1.$track_id1."\n".TY_PT_5."\n\n"; }
    
        if (zen_not_null($track_id2)) { $notify_comments .= "\n\n".TY_PT_1.' '.CARRIER_NAME_2."\n".TY_PT_2.' '.$track_id2."\n\n<br/><br/> <a href=".CARRIER_LINK_2.$track_id2.">".TY_PT_3."</a>"."\n".TY_PT_4."\n".CARRIER_LINK_2.$track_id2."\n".TY_PT_5."\n\n"; }
    
        if (zen_not_null($track_id3)) { $notify_comments .= "\n\n".TY_PT_1.' '.CARRIER_NAME_3."\n".TY_PT_2.' '.$track_id3."\n\n<br/><br/> <a href=".CARRIER_LINK_3.$track_id3.">".TY_PT_3."</a>"."\n".TY_PT_4."\n".CARRIER_LINK_3.$track_id3."\n".TY_PT_5."\n\n"; }
    
        if (zen_not_null($track_id4)) { $notify_comments .= "\n\n".TY_PT_1.' '.CARRIER_NAME_4."\n".TY_PT_2.' '.$track_id4."\n\n<br/><br/> <a href=".CARRIER_LINK_4.$track_id4.">".TY_PT_3."</a>"."\n".TY_PT_4."\n".CARRIER_LINK_4.$track_id4."\n".TY_PT_5."\n\n"; }
    
        if (zen_not_null($track_id5)) { $notify_comments .= "\n\n".TY_PT_1.' '.CARRIER_NAME_5."\n".TY_PT_2.' '.$track_id5."\n\n<br/><br/> <a href=".CARRIER_LINK_5.$track_id5.">".TY_PT_3."</a>"."\n".TY_PT_4."\n".CARRIER_LINK_5.$track_id5."\n".TY_PT_5."\n\n"; }
    
    // END TY TRACKER 4 -------------------------------------------------
    Last edited by abcisme; 15 Nov 2012 at 02:21 PM.

  6. #676
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    You need to be clear about which version of TYPT this change applies to as the most recent versions no longer have an admin/includes/functions/extra_functions/common_orders_functions.php file.

    That said, thanks for sharing your solution..
    Quote Originally Posted by abcisme View Post
    Here's what I ended up doing to make the emails work in my multilanguage shop. I don't use the sidebox, so sorry, I can't help there.

    For each of your languages, in admin/includes/languages/YOUR_LANGUAGE/order_status_email.php

    Add to the bottom (replace the defined text with your language as necessary):

    Code:
    define('TY_PT_1','Your');
    define('TY_PT_2','Tracking ID is');
    define('TY_PT_3','Click here');
    define('TY_PT_4','to track your package.<br /><br />If the above link does not work, copy the following URL address and paste it into your Web browser:<br/>');
    define('TY_PT_5','<br><br>It may take up to 24 hours for the tracking information to appear on the website.');
    In admin/includes/functions/extra_functions/common_orders_functions.php find // TY TRACKER 4 BEGIN

    Replace the whole section with this:

    Code:
    // TY TRACKER 4 BEGIN  ----------------------------------------------
    
      $status = $status_info->fields['orders_status_id'];
      $track_id1 = $status_info->fields['track_id1'];
      $track_id2 = $status_info->fields['track_id2'];
      $track_id3 = $status_info->fields['track_id3'];
      $track_id4 = $status_info->fields['track_id4'];
      $track_id5 = $status_info->fields['track_id5'];
    
      if (zen_not_null($status_info->fields['comments']) && $status_info->fields['comments'] != '' && $_POST['notify_comments'] == 'on') {
    
        $notify_comments = EMAIL_TEXT_COMMENTS_UPDATE . $status_info->fields['comments'] . "\n\n<br><br>";
    
      }
    
        if (zen_not_null($track_id1)) { $notify_comments .= "\n\n".TY_PT_1.' '.CARRIER_NAME_1."\n".TY_PT_2.' '.$track_id1."\n\n<br/><br/> <a href=".CARRIER_LINK_1.$track_id1.">".TY_PT_3."</a>"."\n".TY_PT_4."\n".CARRIER_LINK_1.$track_id1."\n".TY_PT_5."\n\n"; }
    
        if (zen_not_null($track_id2)) { $notify_comments .= "\n\n".TY_PT_1.' '.CARRIER_NAME_2."\n".TY_PT_2.' '.$track_id2."\n\n<br/><br/> <a href=".CARRIER_LINK_2.$track_id2.">".TY_PT_3."</a>"."\n".TY_PT_4."\n".CARRIER_LINK_2.$track_id2."\n".TY_PT_5."\n\n"; }
    
        if (zen_not_null($track_id3)) { $notify_comments .= "\n\n".TY_PT_1.' '.CARRIER_NAME_3."\n".TY_PT_2.' '.$track_id3."\n\n<br/><br/> <a href=".CARRIER_LINK_3.$track_id3.">".TY_PT_3."</a>"."\n".TY_PT_4."\n".CARRIER_LINK_3.$track_id3."\n".TY_PT_5."\n\n"; }
    
        if (zen_not_null($track_id4)) { $notify_comments .= "\n\n".TY_PT_1.' '.CARRIER_NAME_4."\n".TY_PT_2.' '.$track_id4."\n\n<br/><br/> <a href=".CARRIER_LINK_4.$track_id4.">".TY_PT_3."</a>"."\n".TY_PT_4."\n".CARRIER_LINK_4.$track_id4."\n".TY_PT_5."\n\n"; }
    
        if (zen_not_null($track_id5)) { $notify_comments .= "\n\n".TY_PT_1.' '.CARRIER_NAME_5."\n".TY_PT_2.' '.$track_id5."\n\n<br/><br/> <a href=".CARRIER_LINK_5.$track_id5.">".TY_PT_3."</a>"."\n".TY_PT_4."\n".CARRIER_LINK_5.$track_id5."\n".TY_PT_5."\n\n"; }
    
    // END TY TRACKER 4 -------------------------------------------------
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #677
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Quote Originally Posted by DivaVocals View Post
    You need to be clear about which version of TYPT this change applies to as the most recent versions no longer have an admin/includes/functions/extra_functions/common_orders_functions.php file.

    That said, thanks for sharing your solution..
    Eek. Sorry! I think it was actually the version included in SuperOrders 3.0. I'm running ZC v1.3.9h.

  8. #678
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    Quote Originally Posted by Meepy12 View Post
    hi

    I have version 1.5 zen cart and just installed ty package tracker.

    Installed fine but when turned on in Admin->Tools->Layout Boxes, my website accent, other side boxes and features disappeared, so I turned the two files off. Is it possible to have the ty tracker on its own webpage and not as a side box on store front?

    Ty tracker table shows in the sql data base under 'configuration group', but “Settings for Ty Package Tracker features” doesn’t show under admin/ configuration tab. Please let me know where can I configure the Ty Package Tracker features & layout when turned on?

    Also how to install it on its own EZ page.

    thanks

    Meepy
    The readme and the leading post of this support thread also states very clearly how the mod works:
    -There is a separate sidebox that show the customers past orders. Customer can track their orders from the sidebox or from the "My Account" page
    There is no need/reason to put this on an EZ page since the tracking info is readily available on the "My Account" page. It is specific to the customer, so even if you got it on an EZ Page (again WHY??) The EZ page would have to be secured so that your customers only saw THEIR shipping/tracking information.

    The install is very straight forward. Based on your posts all over the forum, it appears as if you have missed something in the install.

    The readme files which come with Ty Package Tracker also states very clearly in at LEAST two places that the add-on is indeed v1.5 compatible. (The Ty Package Tracker downloads page also provides the Zen Cart compatibility data)

    As I stated on the other thread, please don't take this the wrong way, but I think you might want to give some consideration to paying for some assistance to help you get things working for you..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #679
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Integrate ShipRush with TY Package Tracker

    Found this posted on the forum.. thought I would share it here on the support thread for this mod (since it is a helpful post regarding this mod)

    Integrate ShipRush with TY Package Tracker: http://www.zen-cart.com/showthread.p...77#post1147777
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  10. #680
    Join Date
    Apr 2012
    Posts
    21
    Plugin Contributions
    0

    Default Re: Track Package from FedEx, UPS, Postal, DHL, etc..

    I had a coupple questions about this add-on before installing it:

    - Does this version of Dual Pricing support products which are priced by attribute? i.e. I want to offer wholesale pricing on certain product attributes but not on others.

    - Do customer groups work with dual pricing? i.e. can I establish a wholesale price and also assign the wholesale customers to a customer group which has additional discounts? i.e. wholesale = $9.99 customer group offers 25% discount so they now pay $7.50?

    Thanks for any advice or guidance you can offer.

 

 
Page 68 of 100 FirstFirst ... 1858666768697078 ... LastLast

Similar Threads

  1. v150 Is there a FedEx plugin to quote on package size and postal code/zone?
    By Music Man in forum Addon Shipping Modules
    Replies: 7
    Last Post: 3 Aug 2014, 10:30 PM
  2. UPS/DHL shipping in Europe
    By DML73 in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 29 Jan 2009, 09:43 PM
  3. what is the track your package url?
    By keylesslocks in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 29 Aug 2008, 06:49 PM
  4. going from small package to large package
    By luna_99 in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 19 Nov 2007, 02:44 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR