Page 186 of 202 FirstFirst ... 86136176184185186187188196 ... LastLast
Results 1,851 to 1,860 of 2020
  1. #1851
    Join Date
    Jul 2004
    Location
    UK
    Posts
    182
    Plugin Contributions
    0

    Default Re: Super Orders 2.0


  2. #1852
    Join Date
    Apr 2009
    Location
    Athens, Europe
    Posts
    125
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by profitshock View Post
    Thanx!

    I didn't search thoroughly ... did I?

    Kind regards,
    orange_juice

  3. #1853
    Join Date
    Jul 2010
    Posts
    24
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Hi everybody!

    I have problem with Super Orders module:

    http://www.zen-cart.com/forum/showthread.php?t=162842

    Can somebody help me, please?

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

    Default Re: Super Orders 2.0

    Quote Originally Posted by malachi View Post
    Hi everybody!

    I have problem with Super Orders module:

    http://www.zen-cart.com/forum/showthread.php?t=162842

    Can somebody help me, please?
    The order editing features in Super Orders was never fully flushed out/developed. The upcoming Super Order release has deprecated all of the order editing functionality. We are recommending instead for Super Order users that they use the Edit Orders module for order editing functionality. The upcoming Super Orders release will also provide the necessary edited files needed for Edit Orders and Super Orders to work together..

    In the meantime if you want to use Edit Orders and would like to use it with Super Orders, instructions for how to make these edits yourself have been posted in both the Edit Orders and Super Orders support threads. (the edits required are SUPER EASY to make yourself -- we are only including them in the new Super Orders release just to make it convenient for users) Search for "Edit Order, DivaVocals" and you will find my posts on this subject in both threads.

    The Edit Orders support thread has the link where to get Edit Orders (the latest version is available on the authors website - the version in the downloads section is outdated)
    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.

  5. #1855
    Join Date
    Feb 2010
    Posts
    81
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I am working on a new site that plans to launch in a few days, but am having a blank page issue that I could not find a fix for. I have tried a few test transactions and they go through fine. The blank page is when you try to view the invoice. Either through the link sent to the customer or by going to "my account" and clicking on "view" by the order. I have ran the debug mod and it came back with this error...

    [30-Aug-2010 07:24:33] PHP Fatal error: Cannot redeclare class order in *****/public_html/includes/classes/order.php on line 1028

    I really do not know where to go from here. When I look at that file on line 1028 is the "}" at the very end of the file.

    Version: 2.0 (Rev 48a)
    Zen Cart Version: v1.3.8

  6. #1856
    Join Date
    Jul 2010
    Posts
    24
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by DivaVocals View Post
    The order editing features in Super Orders was never fully flushed out...)
    I will try Edit Orders.
    Thanks very much for explanation!

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

    Default Re: Super Orders 2.0

    Quote Originally Posted by malachi View Post
    I will try Edit Orders.
    Thanks very much for explanation!
    FYI, I believe the Super Orders readme also kinda covers this as well..
    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. #1858
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders 2.0

    Super Orders installed on a vanilla store works right out the box. Which leads me to believe that other modules you've installed which modify this file are the cause of your issue..

    Quote Originally Posted by atl2rva View Post
    I am working on a new site that plans to launch in a few days, but am having a blank page issue that I could not find a fix for. I have tried a few test transactions and they go through fine. The blank page is when you try to view the invoice. Either through the link sent to the customer or by going to "my account" and clicking on "view" by the order. I have ran the debug mod and it came back with this error...

    [30-Aug-2010 07:24:33] PHP Fatal error: Cannot redeclare class order in *****/public_html/includes/classes/order.php on line 1028

    I really do not know where to go from here. When I look at that file on line 1028 is the "}" at the very end of the file.

    Version: 2.0 (Rev 48a)
    Zen Cart Version: v1.3.8
    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.

  9. #1859
    Join Date
    Apr 2009
    Location
    Athens, Europe
    Posts
    125
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Hallo!

    Code:
    INSERT INTO so_payment_types VALUES (NULL, 1, 'CA', 'Cash');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'CK', 'Check');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'MO', 'Money Order');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'ADJ', 'Adjustment');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'CC', 'Credit Card');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'MC', 'Master Card');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'VISA', 'Visa');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'AMEX', 'American Express');
    INSERT INTO so_payment_types VALUES (NULL, 1, 'DISC', 'Discover');
    This works great for an one-language site.

    How could I update the database to get it working on an bilingual site?

    I do not really care about the translation. I just need the drop down menu to show the same options if language 2 is selected in the admin area.

    I tried

    Code:
    INSERT INTO so_payment_types VALUES (NULL, 2, 'CA', 'Cash');
    INSERT INTO so_payment_types VALUES (NULL, 2, 'CK', 'Check');
    INSERT INTO so_payment_types VALUES (NULL, 2, 'MO', 'Money Order');
    INSERT INTO so_payment_types VALUES (NULL, 2, 'ADJ', 'Adjustment');
    INSERT INTO so_payment_types VALUES (NULL, 2, 'CC', 'Credit Card');
    INSERT INTO so_payment_types VALUES (NULL, 2, 'MC', 'Master Card');
    INSERT INTO so_payment_types VALUES (NULL, 2, 'VISA', 'Visa');
    INSERT INTO so_payment_types VALUES (NULL, 2, 'AMEX', 'American Express');
    INSERT INTO so_payment_types VALUES (NULL, 2, 'DISC', 'Discover');
    but this failed as duplicate entry in the database.

    Will the operation of super orders be impaired if I enter new codes in the payment_type_code in order to cater for the translation?

    Otherwise, how could I make it work when I choose my second admin language?

    Kind regards,
    orange_juice

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

    Default Re: Super Orders 2.0

    **Deleted**
    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.

 

 

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