Page 102 of 202 FirstFirst ... 25292100101102103104112152 ... LastLast
Results 1,011 to 1,020 of 2020
  1. #1011
    Join Date
    Jul 2005
    Location
    Brooklyn NY
    Posts
    511
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    her is one more problem I cant fix
    When I use the batch print it opens all of the invoices in a new window using frames and it will not print them right so I found this post with in this thread http://www.zen-cart.com/forum/showpo...&postcount=814
    but I really dont uderstand it.

    How do I change it from frames to CSS>

  2. #1012
    Join Date
    Sep 2007
    Location
    Herne Bay, Kent, England
    Posts
    182
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by Louis View Post
    Refer post 866 earlier. This worked for me.
    Perfect!! Thank you very much!!

    Philip

  3. #1013
    Join Date
    Nov 2005
    Posts
    64
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Is there any way to automatically send the customer an email that contains the new invoice (and not just a link) after the invoice has been edited? So far the only way I have found to accomplish this is manually.

  4. #1014
    Join Date
    Sep 2004
    Posts
    1,390
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Quote Originally Posted by touchclothing View Post
    her is one more problem I cant fix
    When I use the batch print it opens all of the invoices in a new window using frames and it will not print them right so I found this post with in this thread http://www.zen-cart.com/forum/showpo...&postcount=814
    but I really dont uderstand it.

    How do I change it from frames to CSS>
    lurkerfilms did an excellent job laying out the changes necessary. He even has a download with the necessary files. If you go through all that and are still not sure what to do, it's probably a little above your level...which of course makes it the perfect opportunity to get in there and try it yourself anyway.

    Make a copy of your store, either elsewhere on server or offline (I suggest WAMP if you would like to code locally on a windows box), grab his files and instructions, and start poking around. In-file searches for variables, CSS definitions, etc. will help you track down what goes where. For that I recommend Notepad++.

    Like my mom always said: "This is a self-cleaning bath...clean up after yourself!"
    Quote Originally Posted by katco View Post
    Is there any way to automatically send the customer an email that contains the new invoice (and not just a link) after the invoice has been edited? So far the only way I have found to accomplish this is manually.
    It's not a feature I have built into SO anywhere, but a good idea to be sure. Unless theres another contrib out there that does it, I think manual is currently your only answer.
    Frank Koehl
    "Cleverly Disguised as a Responsible Adult"

    frankkoehl.com

  5. #1015
    Join Date
    Jul 2005
    Location
    Brooklyn NY
    Posts
    511
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by BlindSide View Post
    lurkerfilms did an excellent job laying out the changes necessary. He even has a download with the necessary files. If you go through all that and are still not sure what to do, it's probably a little above your level...which of course makes it the perfect opportunity to get in there and try it yourself anyway.

    Make a copy of your store, either elsewhere on server or offline (I suggest WAMP if you would like to code locally on a windows box), grab his files and instructions, and start poking around. In-file searches for variables, CSS definitions, etc. will help you track down what goes where. For that I recommend Notepad++.

    Like my mom always said: "This is a self-cleaning bath...clean up after yourself!"
    I tried to download Lurkerfilms files but I think he has taken them down. When I click on the link it is no longer there. do you have the downloads?

  6. #1016
    Join Date
    Jul 2005
    Location
    Brooklyn NY
    Posts
    511
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    and your right i read this post http://www.zen-cart.com/forum/showpo...&postcount=814
    and did not understand a thing it might be a little over my head.

  7. #1017
    Join Date
    Sep 2004
    Posts
    1,390
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Again, don't let that stop you. The only way you learn is to try. The internet is big, but Google is bigger. Pick a starting point and look around for advice.

    I'll let you in on a little secret: when I started coding Super Orders, I was about 3 months into Zen Cart and maybe 6 months into PHP in general. It just takes some time and effort.
    Frank Koehl
    "Cleverly Disguised as a Responsible Adult"

    frankkoehl.com

  8. #1018
    Join Date
    Sep 2007
    Posts
    47
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I'm having some trouble installing. I've uploaded all the files, but am having issues with the SQL file. I tried uploading hte file through ZC's "install SQL Patches", but got an error. When I tried uploading the file again, this is what I got:

    "1062 Duplicate entry 'CA' for key 2
    in:
    [INSERT INTO zen_so_payment_types VALUES (NULL, 1, 'CA', 'Cash');]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields."


    How do I fix this? I'm not all that familiar with SQL, I could really use some help!

  9. #1019
    Join Date
    Dec 2007
    Location
    Acton, California
    Posts
    399
    Plugin Contributions
    1

    Default Re: Super Orders 2.0

    Quote Originally Posted by touchclothing View Post
    and your right i read this post http://www.zen-cart.com/forum/showpo...&postcount=814
    and did not understand a thing it might be a little over my head.
    Your right, the instructions was a bit hard to get, but the idea is sound. I changed the require to require_once in the three files. With super_batch_forms.php look to the bottom around line 339 for

    function batch_forms($target_file, $selected_oids, $num_copies = 1)

    replace from the 'function' to the bottom closing php tag with his code. making sure not to delete the closing php tag.

    I didn't use this part.. <?php if ($_GET['pagebreaks'] != 1) { ?>

    Now in the super_stylesheet.css add a pagebreak to a class name. like

    Code:
    .endline {
    page-break-after: always;
    }
    Then just before the closing body tag of packing slip and invoice pages, add something like this

    Code:
    <div class="endline">------------ pagebreak --------------</div>
    What you get when you do this is a full html page of all the invoices or packing slip. You will see the -----pagebreak------ but when you print, each will print on there own page and the -----pagebreak------ wont. If you do this with the shipping label, you'll get one label per page. But play with the styles and you can get it to print on a label sticker page.

    As always, back up before you edit and best to use a testing server to make sure everything works before uploading to a live site.
    Dave
    WarehouseToYou.net -- FourSaleBuyU.com (true Auction and 'Make-an-Offer' site)

  10. #1020
    Join Date
    Feb 2004
    Posts
    1,271
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Does anyone know how to do this?
    What I am looking for is to put a button onto Super Orders
    that would take me to the TY Package Tracker (With its respected order)

    Then, what would be nice is to have the same thing back in reverse.

 

 

Similar Threads

  1. v139h Super Orders v3.0 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 983
    Last Post: 30 Apr 2013, 02:42 PM
  2. 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
  3. Replies: 13
    Last Post: 27 Oct 2010, 05:48 PM
  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. Does changing default currency affect previous orders? coupons? super orders?
    By apemusic in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 2
    Last Post: 21 Apr 2007, 01:53 PM

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
  •