Page 101 of 202 FirstFirst ... 519199100101102103111151201 ... LastLast
Results 1,001 to 1,010 of 2020
  1. #1001
    Join Date
    Sep 2004
    Posts
    1,388
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Quick update for everyone: I'll be attending the Zen Cart dev conference in Toronto this weekend. But that's not the update.

    The part you need to know about is the fact that while I'm there, I will be presenting some big new features and functionality that might actually make their way into the Zen core! I don't want to talk to loudly about it yet, because they may shoot me down. However, it's something that we've talked about for some time, and I've finally been able to follow through on those discussions.

    This is important to you because it has been the focus of my development work over the past year or so, explaining the lack of SO updates and forum posts. We'll see how it goes, I'll report any good news here and on my blog (see my sig).

    For anyone attending, I'll see you in Toronto!
    Frank Koehl
    "Cleverly Disguised as a Responsible Adult"

    frankkoehl.com

  2. #1002
    Join Date
    Nov 2005
    Posts
    71
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    From post # 988:

    Quote Originally Posted by katco View Post
    I am still using V1.3 but being as that thread is locked, I am posting here, pardon me if that's the wrong thing to do.

    I did upgrade to 2.0 but did not like it at all, so here I am with 1.3 and a problem I have been trying to solve forever.

    When I update an invoice, the best I seem to be able to do is send an email to the customer with a link to the new invoice. I really want the customer to get an email that has all of the new info in it, not just a link. Is anyone able to help me with that please? Thank you. :)

  3. #1003
    Join Date
    Jul 2005
    Location
    Brooklyn NY
    Posts
    507
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    ))))))))Quote:
    Originally Posted by touchclothing View Post
    I have been using super order for a while and I love it thank you. But I just moved my site to a new server and when I tried to use my super orders it says "can't open file" can some one help get this great mod back up and running??? (((((


    )))))Reply:
    That's way too broad of an error message to help. What SO page gives you that error? Is that error the only text on the page, or do portions of the page render (i.e. can you see the navigation at all)? Does the rest of your admin work?((((


    Sorry about that it happens when I I go to super orders and then go to the bottom and put a date rage in the Export Orders to XML then when I hit enter thats when it gives me the "can't open file"

  4. #1004
    Join Date
    Jul 2005
    Location
    Brooklyn NY
    Posts
    507
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    it opens a blank white page that says "can't open file"

  5. #1005
    Join Date
    Sep 2007
    Location
    Herne Bay, Kent, England
    Posts
    182
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    That problem has been handled several times over. Search the thread for the solution. The phrase "email update red x" should get the results.[/QUOTE]

    Thanks, BlindSide. I'd already done that and applied the following fix gleaned from post 971

    Change the code below in admin\super_orders.php


    Code:

    PHP Code:
    if ( ($check_status->fields['orders_status'] != $status) || zen_not_null($comments)) {
              
    $customer_notified '0';
              if (isset(
    $_POST['notify']) && ($_POST['notify'] == 'on')) {
                
    $customer_notified '1';
              }

              
    update_status($oID$status$customer_notified$comments);

              if (
    $customer_notified == '1') {
                
    email_latest_status($oID);
              } 
    to


    Code
    :
    $notify $_POST['notify'];
    if ( (
    $check_status->fields['orders_status'] != $status) || zen_not_null($comments)) {
        
    update_status($oID$status$notify$comments);

        if (
    $notify == 'on') { 
             
    email_latest_status($oID);
        } 
    My problem is that it does'nt seem to have helped solve the issue!! This leads me to think I'm missing something as it obviously works for other people.

    Regards

    Philip

  6. #1006
    Join Date
    Jul 2006
    Location
    Johannesburg
    Posts
    447
    Plugin Contributions
    1

    Default Re: Super Orders 2.0

    Refer post 866 earlier. This worked for me.

  7. #1007
    Join Date
    Sep 2007
    Posts
    73
    Plugin Contributions
    2

    Default Re: Super Orders 2.0

    I want photos on my super_orders.php?page=1&oID=2&action=edit page.

    I tried adding this code (and aligned the columns and heading) but I am not getting photos. [edit] I am just getting placeholders[end of edit] Any suggestions?

    PHP Code:
    <td class="dataTableContent" valign="middle">' . zen_image(DIR_WS_CATALOG . DIR_WS_IMAGES . $products->fields['products_image'] , $order->products[$i]['name'], SMALL_IMAGE_HEIGHT, SMALL_IMAGE_WIDTH) . '</a>&nbsp;</td>
    The code came from the super_packingslip.php page. I was hoping it would show up.

    I did come up with this solution to adding photos to the admin side of the catalog.

    http://www.zen-cart.com/forum/showthread.php?t=93413
    Last edited by inkuyo; 18 Apr 2008 at 03:28 AM. Reason: additional information

  8. #1008
    Join Date
    Feb 2007
    Location
    NNJ
    Posts
    212
    Plugin Contributions
    0

    help question Re: Super Orders 2.0

    Hello Gang,

    I want to thank Frank and the other collaborators for their masterful efforts!!

    Just a quick answer, in light of the fact that there may not be one.

    I'm updating my ZC from 1.3.7 to 1.3.8a.

    I used to have SO on my prior version, and this is what I did this far.
    I downloaded a fresh copy of ZC 1.3.8a on top of my old database, and am updating the database as needed and uninstalling and reinstalling the mods I like from fresh downloads.

    I thought that approach easier that fooling around looking for modified files in the core.

    So, I see on the download page for SO that the mod hasn't changed since 10/07. But when reading the forum, there's jibjab about fixes along the way.
    Is there a newer version with all the fixes or does someone have the fixes listed in one place so I can apply them manually?

    Thanks to you! Peace to all of us! And may God Bless America!
    Elliot

    The loves of my life are a good white zinfandel and my dog Homer.

  9. #1009
    Join Date
    Sep 2004
    Posts
    1,388
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Quote Originally Posted by touchclothing View Post
    Sorry about that it happens when I I go to super orders and then go to the bottom and put a date rage in the Export Orders to XML then when I hit enter thats when it gives me the "can't open file"
    Quote Originally Posted by touchclothing View Post
    it opens a blank white page that says "can't open file"
    Export Orders to XML is a separate module, which plugs into Super Orders for easy access. You'll need to identify the module you installed and look into its configuration.
    Quote Originally Posted by Zinfandel View Post
    Hello Gang,

    I want to thank Frank and the other collaborators for their masterful efforts!!
    You're welcome! :)
    Just a quick answer, in light of the fact that there may not be one.

    I'm updating my ZC from 1.3.7 to 1.3.8a.

    I used to have SO on my prior version, and this is what I did this far.
    I downloaded a fresh copy of ZC 1.3.8a on top of my old database, and am updating the database as needed and uninstalling and reinstalling the mods I like from fresh downloads.

    I thought that approach easier that fooling around looking for modified files in the core.

    So, I see on the download page for SO that the mod hasn't changed since 10/07. But when reading the forum, there's jibjab about fixes along the way.
    Is there a newer version with all the fixes or does someone have the fixes listed in one place so I can apply them manually?

    Thanks to you! Peace to all of us! And may God Bless America!
    No, there's no new version available. The patches you see are all community homebrew to fill the gap till I can get this damn installer done. However I should note that all these fixes are accounted for in the next release.

    I'll also be reviewing the new version heavily with the Zen Cart team this weekend in Toronto; that'll hopefully yield some positive results.
    Frank Koehl
    "Cleverly Disguised as a Responsible Adult"

    frankkoehl.com

  10. #1010
    Join Date
    Jul 2005
    Location
    Brooklyn NY
    Posts
    507
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    her is one more problem I cant fix
    When I use the batch print it opens all of the invoices in a new window using frames and it will not print them right so I found this post with in this thread http://www.zen-cart.com/forum/showpo...&postcount=814
    but I really dont uderstand it.

    How do I change it from frames to CSS>

 

 

Similar Threads

  1. 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
  2. v139h Super Orders v3.0 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1018
    Last Post: 28 Apr 2014, 11:38 PM
  3. 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
  4. Super Orders 2.0 postage marks with Super Orders
    By sketchhgal in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Mar 2009, 03:05 PM
  5. Edit Orders and Super Orders, anyone doing that?
    By swamyg1 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 4 Feb 2009, 06:03 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