Page 115 of 202 FirstFirst ... 1565105113114115116117125165 ... LastLast
Results 1,141 to 1,150 of 2020
  1. #1141
    Join Date
    Feb 2008
    Posts
    569
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    anyone still waiting to find out how to uninstall it,,,, I had it for a year and would like to remove it never used it have another idea in mind.... I dont have the backup Just import your database from the back up.... it is to far back will lose to much..Edit orders won't work with this mod installed..

  2. #1142
    Join Date
    May 2005
    Posts
    535
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I have been running this module for some time and as my business gets bigger it is taking me longer and longer to enter the credit card details in the payment data part. If I don't then all my invoices say balance due.

    I have gone back over the install instructions and I read:

    7. Edit the order.php class (catalog side)
    The new payment system includes tracking credit cards payments, so we have
    to get that data into the proper place. So unless you want to reenter each
    CC payment manually, we need to get in on the order creation process.

    As the order class in the admin handles recalling order data (we'll get to
    that in a minute), the catalog version takes care of creating the order.
    All we have to do is add a bit of code to grab the CC data once it's
    defined. Open includes/classes/order.php, then find this line:

    $insert_id = $db->Insert_ID();

    Immediately after it, add the following code:

    // BEGIN Super Orders edit
    // add CC data as a line item to SO payment system
    if (zen_not_null($this->info['cc_type']) || zen_not_null($this->info['cc_owner']) || zen_not_null($this->info['cc_number'])) {
    require(DIR_WS_CLASSES . 'super_order.php');
    $so = new super_order($insert_id);
    $so->cc_line_item();
    }
    // END Super Orders edit



    having checked my file, it is there but I am not getting that data showing in the payment lines.

    might I have missed something as it is now getting to much too keep entering the data when the customer is paying by credit card.

    Thanks

    MG

  3. #1143
    Join Date
    Aug 2008
    Posts
    33
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Just wanna make sure I'm not missing something here. We need to change the shipping on an order from time to time. I see that I can use "edit order totals" and change those total items, but if I change the shipping item there, the shipping_method on the orders table still holds the original value. Is there a more 'proper' way to change the shipping on an order after its been placed?

    Thanks.

  4. #1144
    Join Date
    Jul 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Is super orders comptabiel with Zen cart 1.3.8? Thank!

  5. #1145
    Join Date
    May 2008
    Location
    South Australia
    Posts
    86
    Plugin Contributions
    1

    red flag Re: Super Orders 2.0

    ok incase this hasnt been said b4, there is bug where super orders doesn record correctly that a customer was notified, (always no)

    this can be corrected in the file: super_orders_functions.php

    line 401:
    PHP Code:
       if ($notified == 'on'
    change to
    PHP Code:
      if ($notified


    also if u want it to notify by default edit: super_orders.php

    line 929:
    PHP Code:
      echo zen_draw_checkbox_field('notify'''false); echo '&nbsp;' ENTRY_NOTIFY_CUSTOMER '<br /><br />'
    to

    PHP Code:
      echo zen_draw_checkbox_field('notify'''true); echo '&nbsp;' ENTRY_NOTIFY_CUSTOMER '<br /><br />'

  6. #1146
    Join Date
    Sep 2008
    Posts
    605
    Plugin Contributions
    6

    Default Super Orders 2.0 - Bug and clarification of Append Comments & Notify Customer

    Okay this has been gone over many times before and it's probably best if I go over the wording. Apologies is anyone if taught to suck eggs, but errors with notify have been reported and fixed, but a search for "append" brings up nothing...

    In the original "Customers" > "Order", we have two checkboxes, one that says "Notify Customer" and one that says "Append Comments". If neither of the boxes are ticked, then the order history still updates with whatever in the textarea.

    The original
    • "Notify Customer" means send the customer the change in status email,
    • "Append Comments" means add the comments in the textarea to the "change in status email".


    At no point does the "Append comments" have anything to do with adding comments to the order history.

    With Super Orders 2.0rev46, we have the same type of thing. If one
    • unticks "append comments",
    • puts something in the text box,
    • then the text box writing gets put into the Status History.

    If one ticks "notify customers" then it sends the change in status to the customer and it should only send the writing in the textarea to the customer when the "append comments" box is checked.

    It doesn't, Super orders 2.0rev46 sends comment by email regardless of the ticking of the box "apend comments" out all of the time (called notify_comments in the PHP/HTML).

    In super_orders_functions.php approx line number 447

    Code:
    if (zen_not_null($status_info->fields['comments']) && $status_info->fields['comments'] != '') {
        $notify_comments = EMAIL_TEXT_COMMENTS_UPDATE . $status_info->fields['comments'] . "\n\n";
      }
    should read

    Code:
    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";
      }
    currently the customer always gets the information that is written in the textarea if "notify customer" is chosen.

    To make things clearer I suggest re-wording the define ENTRY_NOTIFY_COMMENTS to "append comments to notification email"

    Thank you
    Philip.

  7. #1147
    Join Date
    Nov 2008
    Location
    Johns Island, SC
    Posts
    19
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I am trying to install super orders and according to the text, there should be a purchase order under payment module. Well, it's not there. Run the sql file and super orders shows under config. Can anyone help?

  8. #1148
    Join Date
    Nov 2008
    Location
    Johns Island, SC
    Posts
    19
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I have the same problem. Did you get it figured out yet?

  9. #1149
    Join Date
    Sep 2008
    Posts
    605
    Plugin Contributions
    6

    Default Re: Super Orders 2.0

    Quote Originally Posted by mjmazza View Post
    I am trying to install super orders and according to the text, there should be a purchase order under payment module. Well, it's not there. Run the sql file and super orders shows under config. Can anyone help?
    you should check if you have a file:

    includes/modules/payment/purchaseorder.php

  10. #1150
    Join Date
    Nov 2008
    Location
    Johns Island, SC
    Posts
    19
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I found the file. The directions in super orders says to make a directory CATALOG under the root directory and copy the folder catalog to there, which I did. Then it says to run the sql file, which I did and it installed all the files under the catalog directory I made... (catalog/includes and catalog/admin)...... My gut tells me to copy these 2 directories under the catalog subdirectory (admin and includes) to to the root/includes nad root/admin, but I am hesitating and waiting for some feedback.. Thanks for your help.

 

 

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