Page 41 of 81 FirstFirst ... 31394041424351 ... LastLast
Results 401 to 410 of 805
  1. #401
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    Quote Originally Posted by DivaVocals View Post
    Because you have something in that product dropdown that is stretching it out.. this is unique to your store.. not caused by Super Orders..
    Thanks for the info guy's. They do have really really long product names.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    Quote Originally Posted by explorer1979 View Post
    Hi, I am using PHP 5.4.30 with Super Order 4.0.9
    How to fix it for PHP 5.4.30? I am sure the same module can working with PHP 5.3.x no problems before ...
    If you are using Super Orders with Zen Cart v1.5.3, please be advised that this module has not yet been updated for Zen Cart v1.5.3

    (updates are in to Super Orders are in progress. PLEASE don't ask for a timeframe.. we're volunteers.. doing this in our SPARE time.. that said we're working as fast as our time permits..)

    The upcoming release WILL NOT be backwards compatible.. If you are running v1.5.0 - 1.5.1 of Zen Cart the upcoming Super Order v4.0.10 will NOT work on your site, and there are ABSOLUTELY no plans to make it backwards compatible.
    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.

  3. #403
    Join Date
    Jan 2007
    Posts
    375
    Plugin Contributions
    3

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    DivaVocals,

    Thank you, yes I am running ZC 1.5.3 right now.

    Look forward to see the Super Order 4.0.10

    Thank a lot of who make this great module.

  4. #404
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    681
    Plugin Contributions
    8

    Default Re: Super Orders v4.0 Support Thread (for ZC v1.5.x)

    Quote Originally Posted by explorer1979 View Post
    DivaVocals,

    Thank you, yes I am running ZC 1.5.3 right now.

    Look forward to see the Super Order 4.0.10

    Thank a lot of who make this great module.
    I know that particular error and thought I squashed it during my edit sweep. Did you grab the files BEFORE DivaVocals merged my changes? You can tell as one of the changes would say "<!-- BOF added to get currency type and value for totals (modified for ZenCart 1.5.3 and beyond by retched) -->"

  5. #405
    Join Date
    Nov 2006
    Location
    Indiana
    Posts
    192
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread

    After I batch update the status of my orders to "complete", some of them revert back to "pending". I have been CAREFULLY checking to be sure all are checked and the "pending" total equals "0" after I'm done. Then, mysteriously, a select few will revert back to pending.

    I believe I have tracked it down to something switching them back after I capture my funds in PayPal. Tonight, the only orders that switched back were orders that were paid with "paypalwpp". Also, the comments in the order history at the time of the pending status change references the PayPal status change to "complete".

    Can someone help me find where to fix this? It seems like a switch somewhere, but I can't find it.

    Thanks a million!

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

    Default Re: Super Orders v4.0 Support Thread

    Quote Originally Posted by Three Sisters View Post
    After I batch update the status of my orders to "complete", some of them revert back to "pending". I have been CAREFULLY checking to be sure all are checked and the "pending" total equals "0" after I'm done. Then, mysteriously, a select few will revert back to pending.

    I believe I have tracked it down to something switching them back after I capture my funds in PayPal. Tonight, the only orders that switched back were orders that were paid with "paypalwpp". Also, the comments in the order history at the time of the pending status change references the PayPal status change to "complete".

    Can someone help me find where to fix this? It seems like a switch somewhere, but I can't find it.

    Thanks a million!
    Not caused by Super Orders.. this is something your payment module is doing, and you need to look at the settings for your payment module to "fix"..
    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. #407
    Join Date
    Aug 2014
    Location
    Washington Township, Gloucester County, New Jersey, United States
    Posts
    11
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread

    I need some help to add a much needed feature to Super Orders. Right now I have it set up so that orders that are paid for get assigned the status "In Production". I need a function to query the contents of an order before assigning it a status update and if it contains an item from a certain category it gets assigned a different status "Wholesale - In Production".

    There's these two functions from admin/includes/functions/general.php

    Code:
    ////
      function zen_cfg_pull_down_order_statuses($order_status_id, $key = '') {
        global $db;
        $name = (($key) ? 'configuration[' . $key . ']' : 'configuration_value');
    
        $statuses_array = array(array('id' => '0', 'text' => TEXT_DEFAULT));
        $statuses = $db->Execute("select orders_status_id, orders_status_name
                                  from " . TABLE_ORDERS_STATUS . "
                                  where language_id = '" . (int)$_SESSION['languages_id'] . "'
                                  order by orders_status_id");
    
        while (!$statuses->EOF) {
          $statuses_array[] = array('id' => $statuses->fields['orders_status_id'],
                                    'text' => $statuses->fields['orders_status_name'] . ' [' . $statuses->fields['orders_status_id'] . ']');
          $statuses->MoveNext();
        }
    
        return zen_draw_pull_down_menu($name, $statuses_array, $order_status_id);
      }
    
      function zen_get_order_status_name($order_status_id, $language_id = '') {
        global $db;
    
        if ($order_status_id < 1) return TEXT_DEFAULT;
    
        if (!is_numeric($language_id)) $language_id = $_SESSION['languages_id'];
    
        $status = $db->Execute("select orders_status_name
                                from " . TABLE_ORDERS_STATUS . "
                                where orders_status_id = '" . (int)$order_status_id . "'
                                and language_id = '" . (int)$language_id . "'");
    
        return $status->fields['orders_status_name'] . ' [' . (int)$order_status_id . ']';
      }
    
    ////


    And then there's this from admin/includes/init_includes/init_so_config.php
    Code:
     $sql = "INSERT IGNORE INTO ".DB_PREFIX."configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES (NULL, 'Auto Status - Payment', 'AUTO_STATUS_PAYMENT', '2', 'Number of the order status assigned when a payment (<strong>not</strong> attached to a purchase order) is added to the payment data.', '".$so_configuration_id."', 5, now(), now(), 'zen_get_order_status_name', 'zen_cfg_pull_down_order_statuses(')";
        $db->Execute($sql);

    I know I pretty much need to clone the above code from init_so_config.php into another drop down option for my admin but I'm not sure if I need to edit one of the two above functions or create an entirely new one to compare the customer's order to their payment status. Any help in accomplishing this would be so greatly appreciated.

  8. #408
    Join Date
    Nov 2006
    Location
    Sapin
    Posts
    44
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread

    Hi, I installed superorders in zencart 1.5.3 whit two languages ​​Spanish and English in English I can see the orderlist but in Spanish i can't see it.

    I copied languages ​​and I have doubled renaming the folder, the truth is that it took several days with this and can not find the solution.

    Can you help me, please.Click image for larger version. 

Name:	orders-listing-english.jpg 
Views:	80 
Size:	60.9 KB 
ID:	14535Click image for larger version. 

Name:	orders-listing-spanish.jpg 
Views:	58 
Size:	36.9 KB 
ID:	14536

    Thank you very much for a little of your time.

  9. #409
    Join Date
    Jun 2013
    Location
    Sydney
    Posts
    25
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread

    Hi,

    I need to add customers comments into the display in the Master Packing Slip PDF. Can anyone suggest how I do this?

    ZC 1.5.1 Super Order 4.0.3.

    Thanks.

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

    Default Re: Super Orders v4.0 Support Thread

    Quote Originally Posted by rayo View Post
    Hi,

    I need to add customers comments into the display in the Master Packing Slip PDF. Can anyone suggest how I do this?

    ZC 1.5.1 Super Order 4.0.3.

    Thanks.
    PDF packingslip code was contributed LONG ago by another contributor who is LONG SINCE gone and has not supported the feature.. Not only that the PDF library which it is built on (FPDF) is an OLD version of FPDF.. I'll keep it in the mod as long as it continues to work and doesn't pose a security threat.. otherwise I can provide NO insight on how to modify it or even how to update FPDF to the latest version (and YEP I did try to upgrade it myself).

    Perhaps another community member will be able to chime in..
    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.

 

 
Page 41 of 81 FirstFirst ... 31394041424351 ... 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. 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
  3. 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
  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