Page 92 of 102 FirstFirst ... 42829091929394 ... LastLast
Results 911 to 920 of 1019
  1. #911
    Join Date
    Aug 2010
    Location
    Hartland, MI
    Posts
    288
    Plugin Contributions
    3

    Default Re: Super Orders v3.0 Support Thread

    I just installed SO (mostly for the batch status update, I was getting tired of going through every order to update status). I love the interface, but have run into a few minor issues...

    1. Customers have been letting us know that they are receiving repeats of the order confirmation email, I think this happened when I ran the batch status update. Of the ones that have let me know they have gotten the repeat email the orders are over 3 weeks old.

    2. The batch status update was going to be a big plus to use in conjunction with MailBeez, but MailBeez doesn't work after I did a batch status update...?

    Any help and/or insight on these issues would be greatly appreciated.
    Thanks
    Mike

  2. #912

    Default Re: Super Orders v3.0 Support Thread

    Hi Mike,

    re: issue #2 - please take a moment to swing by the MailBeez support desk at mailbeez.com and report this issue. MailBeez doesn't overwrite any ZC files (all are native to MailBeez), so I'm not sure what it is about the SO batch status run that could have broken MailBeez, but maybe Cord (the developer) can shed some light. No promises, but if two addons are not playing nice together, it's good for the heavy-hitters of both addons to be in the loop.

    Quote Originally Posted by mikestaps View Post
    I just installed SO (mostly for the batch status update, I was getting tired of going through every order to update status). I love the interface, but have run into a few minor issues...

    1. Customers have been letting us know that they are receiving repeats of the order confirmation email, I think this happened when I ran the batch status update. Of the ones that have let me know they have gotten the repeat email the orders are over 3 weeks old.

    2. The batch status update was going to be a big plus to use in conjunction with MailBeez, but MailBeez doesn't work after I did a batch status update...?

    Any help and/or insight on these issues would be greatly appreciated.
    Thanks
    Mike
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

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

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by mikestaps View Post
    I just installed SO (mostly for the batch status update, I was getting tired of going through every order to update status). I love the interface, but have run into a few minor issues...

    1. Customers have been letting us know that they are receiving repeats of the order confirmation email, I think this happened when I ran the batch status update. Of the ones that have let me know they have gotten the repeat email the orders are over 3 weeks old.

    2. The batch status update was going to be a big plus to use in conjunction with MailBeez, but MailBeez doesn't work after I did a batch status update...?

    Any help and/or insight on these issues would be greatly appreciated.
    Thanks
    Mike
    Regarding issue 1, this has not been reported as an issue before.. So I am not sure what kind of suggestions I could provide..
    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.

  4. #914
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    1.3.9h Is there any way to make the language selection dropdown appear on the superorders pages? When I switch to superorders.php, the language dropdown disappears. So when I have to change an order status on a French order, I have to go back to the admin index, select French from the dropdown then go back to superorders. It would be nice to be able to have the language selection dropdown on the superorders.php page so that I can just toggle back and forth between English and French as I'm going through the orders.

  5. #915
    Join Date
    Aug 2010
    Location
    Hartland, MI
    Posts
    288
    Plugin Contributions
    3

    Default Re: Super Orders v3.0 Support Thread

    @ScriptJunkie - Will do. I know in the past I had an issue with the order status updating but the order status history was not, and that affected MailBeez... I looked at the SQL table and the history has been updated.

    @DivaVocals - I'll give it another day, then batch update status and see if it happens again.

    Thanks!

  6. #916
    Join Date
    Aug 2012
    Posts
    20
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    HELP! I have tried to Install this multiple times. I am using Zen Cart 1.5 and have followed your readme directions to a T and have not had the "conformation" you talk about in the admin section. Please help!

    Thanks!

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

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by jjmondoro View Post
    HELP! I have tried to Install this multiple times. I am using Zen Cart 1.5 and have followed your readme directions to a T and have not had the "conformation" you talk about in the admin section. Please help!

    Thanks!
    Wrong support thread for the Zen Cart v1.5 compatible version of Super Orders..
    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.

  8. #918
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    Having trouble with the special characters in PDF packing slips. The generated PDF files are automatically encoded in ANSI. Is there any way to specify UTF-8 encoding? I'm getting a bunch of è and é etc....

  9. #919
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    Quote Originally Posted by abcisme View Post
    Having trouble with the special characters in PDF packing slips. The generated PDF files are automatically encoded in ANSI. Is there any way to specify UTF-8 encoding? I'm getting a bunch of è and é etc....
    Figured out the product names, but still having trouble with encoding the attributes...

    For the product names: in admin/includes/functions/extra_functions/lcsd_merged_packing_slips.php

    Find:

    Code:
    /* draw order items in table */   
            for ($i=0, $n=sizeof($order->products); $i<$n; $i++) {
                $prod_name = $order->products[$i]['name'];
    Replace with:

    Code:
            /* draw order items in table */   
            for ($i=0, $n=sizeof($order->products); $i<$n; $i++) {
                $prod_name = utf8_decode($order->products[$i]['name']);
    Last edited by abcisme; 19 Nov 2012 at 11:57 PM.

  10. #920
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Super Orders v3.0 Support Thread

    Got it.

    Replace this section:

    Code:
            /* draw order items in table */   
            for ($i=0, $n=sizeof($order->products); $i<$n; $i++) {
                $prod_name = utf8_decode($order->products[$i]['name']);                          
                if (isset($order->products[$i]['attributes']) && (sizeof($order->products[$i]['attributes']) > 0)) {
                    for ($j=0, $k=sizeof($order->products[$i]['attributes']); $j<$k; $j++) {
                        $prod_name .= utf8_decode(' ' . $order->products[$i]['attributes'][$j]['option'] . ': ' . zen_output_string_protected($order->products[$i]['attributes'][$j]['value']));
                    }
                }

 

 
Page 92 of 102 FirstFirst ... 42829091929394 ... LastLast

Similar Threads

  1. v150 Edit Orders v4.0 Support Thread
    By DivaVocals in forum Addon Admin Tools
    Replies: 1877
    Last Post: 6 May 2025, 05:10 PM
  2. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 804
    Last Post: 18 Apr 2025, 12:04 AM
  3. Edit Orders v3.0 for ZC 1.3.9 [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 656
    Last Post: 18 Apr 2016, 06:28 PM
  4. OLD Super Orders 2.0 (See v3.0 thread instead)
    By BlindSide in forum All Other Contributions/Addons
    Replies: 2019
    Last Post: 17 Jan 2012, 05:43 AM
  5. RE: Super Orders v3.0 Support Thread
    By Johnnyd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Jun 2011, 09:28 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