Page 49 of 202 FirstFirst ... 3947484950515999149 ... LastLast
Results 481 to 490 of 2020
  1. #481
    Join Date
    Sep 2006
    Location
    Jacksonville, FL
    Posts
    236
    Plugin Contributions
    0

    help question Re: Super Orders 2.0

    I got up to page 20 of this thread and figured I'd stop and just ask the question...

    When you click on Print Forms the invoices you choose come up in a browser window in individual frames. In order to print a full invoice, at least in Firefox, resize the frame of every invoice and then print. According to the README file all you had to do was click the button and press print, but if I do that then I get one page of the letterhead for my invoices repeated all down the page. The README states that PDF formatting is planned for a future release. Is there an easier way to print these invoices? If not, when can we expect PDF formatting?

    Other than that, this is an amazing mod... great job!
    John L.
    MultiMedia Designer

  2. #482
    Join Date
    Dec 2006
    Location
    Mesa, Arizona USA
    Posts
    39
    Plugin Contributions
    0

    Idea or Suggestion Re: Super Orders 2.0

    DATABASE TABLE ERROR WORK A ROUND - SUGGESTION

    I noticed that there are a few with database errors when installing super orders with no specific work a round mentioned (if there are any, I'm sorry that I missed it). May I suggest that prior to installing this fantastic mod that you edit super_orders_sql.sql. Towards the bottom you will see where the inserts are being called for the configuration table. Replace all the NULL values (17 lines) with empty single quote marks in the lines that read

    INSERT INTO configuration VALUES (NULL,

    They should then read

    INSERT INTO configuration VALUES ('',

    The configuration table's first field is a primary key (unique) that will not (and should not) accept null values. By placing the empty quotes as a replacement for all of the null values, you let the database auto increment the field (as it should).

    Good luck
    Last edited by djsmyers; 16 Feb 2007 at 04:56 PM. Reason: spelling error

  3. #483
    Join Date
    Dec 2006
    Location
    Mesa, Arizona USA
    Posts
    39
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    MY MISTAKE

    Replace the null values with zero values (i.e. '0')

    Sorry, my bad.

  4. #484
    Join Date
    Dec 2005
    Posts
    24
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Firstly I would like to admit that I skimmed
    Secondly I want to commend you on an absolutely ace mod

    I do have a drama though, I just upgraded from a previous version of super orders and it seems that the ability to add products to an order has disappeared *cry* I use this feature SOOO much, I have a site that is 'hyena'd' which means that people sit there and wait for me to list stock and then quickly nab it and race to the checkout before it gets taken out of their cart so anyway last night is a perfect example 1 customer place 8 orders and then I had to combine them so as you can imagine now I dont have this feature I am really bummed Is it something that was just left off or something that was intentionally left out because it was hard to code? Whichever the answer is will it be available in the next release and (not being pushy read above I did skim ) when is the next release due?

    Again awesome mod... am hoping I can do a work around rather than going back to the 'old' version of it cause I like the new things you put into it

  5. #485
    Join Date
    May 2006
    Location
    Texas
    Posts
    565
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Quote Originally Posted by vickichiki View Post
    Firstly I would like to admit that I skimmed
    Secondly I want to commend you on an absolutely ace mod

    I do have a drama though, I just upgraded from a previous version of super orders and it seems that the ability to add products to an order has disappeared *cry* I use this feature SOOO much, I have a site that is 'hyena'd' which means that people sit there and wait for me to list stock and then quickly nab it and race to the checkout before it gets taken out of their cart so anyway last night is a perfect example 1 customer place 8 orders and then I had to combine them so as you can imagine now I dont have this feature I am really bummed Is it something that was just left off or something that was intentionally left out because it was hard to code? Whichever the answer is will it be available in the next release and (not being pushy read above I did skim ) when is the next release due?

    Again awesome mod... am hoping I can do a work around rather than going back to the 'old' version of it cause I like the new things you put into it
    It was intentionally left out as the ZC team is planning to add SKU functionality to products.. so instead of rewriting it for SO and then rewriting it after the functionality came out, BlindSide left it out. However if I'm not mistaken he's already started working on that functionality and its due in the next version of SO.. whenever that may be :)

  6. #486
    Join Date
    May 2005
    Location
    Western MA, USA
    Posts
    604
    Plugin Contributions
    6

    Idea or Suggestion Re: Super Orders 2.0

    Quote Originally Posted by Lawbird123 View Post
    I got up to page 20 of this thread and figured I'd stop and just ask the question...

    When you click on Print Forms the invoices you choose come up in a browser window in individual frames. In order to print a full invoice, at least in Firefox, resize the frame of every invoice and then print. According to the README file all you had to do was click the button and press print, but if I do that then I get one page of the letterhead for my invoices repeated all down the page. The README states that PDF formatting is planned for a future release. Is there an easier way to print these invoices? If not, when can we expect PDF formatting?

    Other than that, this is an amazing mod... great job!
    hey I just came up w/ a solution for the fire fox view thing, and I frame in stead of a frame.
    in admin/super_batch_forms.php, add
    PHP Code:
    foreach ($batch_order_numbers as $order_number) {
              
    $iframes .= "\t" '<iframe height="500" width="100%" src="' $target_file '?oID=' $order_number '"></iframe>' "\n";
              if (
    $num_copies 1) {
                for (
    $i 1$i $num_copies$i++) {
                  
    $iframes .= "\t" '<iframe height="500" width="100%" src="' $target_file '?oID=' $order_number '">' "\n";
                }
              }
            } 
    around line 383

    and below in the mark up you may want to just over write lines 405 -420 to look like
    PHP Code:
                    <body>
                
            <?php
        
    echo $iframes;
           
    // echo $frame_set_start;
            //echo $frames;
            //echo $frameset_end;

            // debug
            /*
            echo "Sessions: <pre>";
            echo 'order numbers:';
            print_r($batch_order_numbers);
            echo "</pre>";
            */
            
    echo '</body></html>';
    you can then very easaly pring the orders in to pdf's by maeking a printer stule sheet for this page.

    JOsh

  7. #487
    Join Date
    Sep 2006
    Location
    Jacksonville, FL
    Posts
    236
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Josh,

    Thanks for the input, but my problem was due to an outdated printer (im guessing). When go to print in FireFox (an a Mac) you select FireFox from the dropdown menu and you should see three print options in the middle:

    - As Laid Out on Screen
    - The Selected Frame
    - Each Frame Separately

    You can print each frame seperately with the final option, which is what I wanted to do, but I was unable to select that option with the printer I was attempting to use. I tried a different print and VOILA, I was able to print out my frames individually. Thanks for the help!

    John
    John L.
    MultiMedia Designer

  8. #488
    Join Date
    Nov 2004
    Location
    West Mids, England
    Posts
    203
    Plugin Contributions
    1

    Default Re: Super Orders 2.0

    I know this has been mentioned before and I've gone through the whole thread!!

    When using the batch status update the bar turns green and the status gets changed but my customer does not get notified and there is a red cross where it says 'customer notified'.

    I do tick the checkbox 'notify customer'.

    I have not seen anyone who has had this problem confirm a solution.

    Blinside:
    You did suggest:
    Quote Originally Posted by BlindSide View Post
    Only one thing has changed in that file between major versions. Open admin/super_batch_status.php. Find this line...
    Code:
    $notify = (int)$_POST['notify'];
    Change it to read as follows....
    Code:
    $notify = $_POST['notify'];
    Upload and give it a whirl.
    I checked and I already have the code without the (int).

    Any help would be appreciated.

    Craig

  9. #489
    Join Date
    Feb 2007
    Location
    malaysia
    Posts
    8
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I've a problem where Super Orders links does not appear in Admin > Customers but it has in Admin > Configuration. My store administration folder was renamed to something else, let say http://www.mydomain.com/myadmin as for security reason. I figured out that was the reason why it does not appear in Customers. How can I set the configuration for this because when I tried on this link http://www.mydomain.com/admin, it was there.


  10. #490
    Join Date
    Dec 2006
    Location
    Mesa, Arizona USA
    Posts
    39
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Did you by chance change the defines in your admin config?

    There are three defines that need to be changed to reflect where your admin directory is located.

    In YourURL/YourAdmin/includes/configure.php
    Find these three lines and change '/admin/' to '/YourAdmin/' (where YourAdmin is the actual directory name you are using)

    PHP Code:
      define('DIR_WS_ADMIN''/admin/');
      
    define('DIR_WS_HTTPS_ADMIN''/admin/');
      
    define('DIR_FS_ADMIN''/hsphere/local/home/user/name.com/admin/'); 
    Good luck.

 

 

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