Page 71 of 202 FirstFirst ... 2161697071727381121171 ... LastLast
Results 701 to 710 of 2020
  1. #701
    Join Date
    Jan 2007
    Posts
    16
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    That worked for the list view! Thanks. Now, I need to get it set up to work properly when I go into the edit view (when you "zoom in" on the details of an order, it still just says "UPS" in the subtotal lines). I'm guessing that's the super_edit.php, but I can't find the same string.

    This has been a huge help--thanks so much.

    Quote Originally Posted by thomasw98 View Post
    You need to compare the two files in admin: super_orders.php and orders.php

    From what I can see, orders.php has this line:

    $contents[] = array('text' => '<br />' . ENTRY_SHIPPING . ' ' . $oInfo->shipping_method);

    And super_orders.php has this line:

    $contents[] = array('text' => TEXT_INFO_SHIPPING_METHOD . ' ' . $shipping_method);

    First backup the original super_orders.php file so that if this does not work, you can always switch back to the orginal.

    Now try changing the shipping line in super_orders.php from the one above to:

    $contents[] = array('text' => TEXT_INFO_SHIPPING_METHOD . ' ' . $oInfo->shipping_method);

    I tested this and it works for me.

    General Advice:
    By the way, this is the logic I use for just about all of these type of problems. I have almost no clue about php coding, so I just use common sense to compare two lines or to make a guess at what I should modify. Most of the time it works. Just remember to always leave a trail of backup files to fall back on in case these type of hack experiments don't work. I usually have several versions of each backup file with indicative names like super_ordersBEFORESHIPPINGLINEADJUSTMENTTEST.php, etc. Even if the adjustment of the shipping line works out ok, I still leave the backup file on my harddrive for a few months just in case.

  2. #702
    Join Date
    Aug 2007
    Location
    Eugene, OR
    Posts
    162
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    It should still be something that needs to be changed in the super_orders.php file...you usually can tell which file is active by looking at the URL. When I am looking at the detail view of an order, the URL still ends with /admin/super_orders.php?page=1&oID=1106&action=edit..which means the page is generated by the super_orders.php file. Sometimes there are submodule files that are called within the page script though, so there is still a chance that what you are looking for is in another file other than super_orders.php.

    From what I can see, you need to modify this section in super_orders.php:

    Code:
    // Short shipping display
        // Formats shipping entry to remove the TEXT_WAY define
        for ($i = 0, $n = sizeof($order->totals); $i < $n; $i++) {
          if ($order->totals[$i]['class'] == 'ot_shipping') {
            $format_shipping = explode(" (", $order->totals[$i]['title'], 2);
            $clean_shipping = rtrim($format_shipping[0], ":");
            $display_title = $clean_shipping . ':';
          }
    But I am not sure how to do it. My "brute force" guess would be to change this line:

    $display_title = $clean_shipping . ':';

    to this:

    $display_title = $oInfo->shipping_method . ':';

    But you will have to play around with it and see what works.

  3. #703
    Join Date
    Aug 2007
    Location
    Eugene, OR
    Posts
    162
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Never mind! I just tested that method and it does not work. I am stumped on this one. Sorry!

  4. #704
    Join Date
    May 2005
    Posts
    82
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Hi, maybe you guys think this is a very stupid question, but I don't really know how Purchase Order works. I've installed Super Order2 mod and notice that Purchase Order needs also to be activated to get it works. Can someone give me a lightly guide about how Purchase Order works? My first thought was P.O. is like an invoice mod, but I can't make it right.

    My apology if this question has been asked before, or not belongs to this thread, but i can't find any answer anywhere.. I've spent many hours to read through this (not finished yet, it is so long) and others thread without any luck.

    Plz help me I do really want to use Super Order2.

  5. #705
    Join Date
    Oct 2007
    Posts
    5
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I have a question about the flow of order processing & if what I want is possible.

    1) Customer places order, but doesn't pay at the time of order.
    2) I then verify shipping costs, modify order with shipping total.
    3) Respond to customer with total information.
    4) Allow them to pay with PayPal.

    Is this possible? I was thinking I could use the purchase order module as a way to modify the shipping information & notify the customer, but how can I modify the order to invoice them to pay with paypal?

    Thanks so much for your help with this.

  6. #706
    Join Date
    Jan 2004
    Posts
    573
    Plugin Contributions
    0

    help question Re: Super Orders 2.0

    i just updated from an earlier version of zencart and also updated from superorders 1.3 to 2.0

    looks like the edit order functionality disappeared

    does anyone know if anyone is working on that functionality?

  7. #707
    Join Date
    Aug 2007
    Location
    Eugene, OR
    Posts
    162
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by sgflowers View Post
    i just updated from an earlier version of zencart and also updated from superorders 1.3 to 2.0

    looks like the edit order functionality disappeared

    does anyone know if anyone is working on that functionality?
    I installed superorders 2.0 fresh, and it does have the edit order functionality. So it sounds like you may have missed something in the upgrade process.

    Specifically, which function are you missing?

  8. #708
    Join Date
    Jan 2004
    Posts
    573
    Plugin Contributions
    0

    help question Re: Super Orders 2.0

    Quote Originally Posted by thomasw98 View Post
    I installed superorders 2.0 fresh, and it does have the edit order functionality. So it sounds like you may have missed something in the upgrade process.

    Specifically, which function are you missing?
    when i click on edit products in the order details - it doesn't give me the capability to edit any of the products in the order - ie prices, product , quantities etc

  9. #709
    Join Date
    Aug 2007
    Location
    Eugene, OR
    Posts
    162
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by sgflowers View Post
    when i click on edit products in the order details - it doesn't give me the capability to edit any of the products in the order - ie prices, product , quantities etc
    On mine, I can "edit contact data", "edit products", and "edit order totals". Order totals and contact data work great, BUT the "edit products" link only brings up a popup screen which does not seem to do anything. So I guess that is what you are saying.

    Now that I think about it, I remember the creator of this mod said something about this recently in this thread. Maybe you can look back a few pages and find his comment. I believe he said that allowing editing of product details is very complex, so he does not have this functionality in place now, etc. etc. I forget the rest, but you can probably find it.

  10. #710

    Default Re: Super Orders 2.0

    Edit Products only allows you to split some products to another order. i.e. break the order into multiple orders if say something is not available and you want to bill & ship the available products only.

 

 

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