Page 93 of 202 FirstFirst ... 43839192939495103143193 ... LastLast
Results 921 to 930 of 2020
  1. #921
    Join Date
    Jun 2006
    Location
    Huntington Beach, CA
    Posts
    55
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I checked this out. I do not think it will accomplish what I am looking for.

    I actually got my xml creation to work. Now I just need to get my query done correctly!

    See here: http://www.zen-cart.com/forum/showthread.php?t=91578
    Rob
    Pier Marketing ◄ Printing and Marketing Collateral - Order Online!
    Pier Technologies ◄ Web Development & IT Solutions
    And That's News? ◄ My NEW Blog!!

  2. #922
    Join Date
    Mar 2008
    Posts
    11
    Plugin Contributions
    0

    Default Super Orders 2.0

    Hi,

    I try to install Super Order 2, when a execute the SQL script, i receive SQL error:

    1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL
    server version for the right syntax to use near 'True', 'False'), ')' at line 1
    in:
    INSERT INTO zen_configuration VALUES (NULL, 'Enable Purchase Order Module',
    'MODULE_PAYMENT_PURCHASE_ORDER_STATUS', 'True',
    'Do you want to accept Purchase Order payments?', 6, 1,
    now(), now(), NULL, 'zen_cfg_select_option(array('True', 'False'), ');

    Does someone can help me ?

    Thanks

    My version of Zencart : 1.37.1 and MySQL 5.0.51

  3. #923
    Join Date
    Mar 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    It works nows, i change the syntaxe of this line, change quote for double quote.

    INSERT INTO configuration VALUES (NULL,
    'Enable Purchase Order Module', 'MODULE_PAYMENT_PURCHASE_ORDER_STATUS',
    'True','Do you want to accept Purchase Order payments?',
    6,1,now(),now(),NULL, "zen_cfg_select_option(array(\'true\', \'false\'),");

  4. #924
    Join Date
    Jul 2006
    Posts
    213
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    This question is probably for Blindside...
    Is there a reason why super_invoice.php and super_packingslip.php use stylesheet.css and NOT super_stylesheet.css (or both)??
    Super_stylesheet.css includes classes like .invoiceHeader which seems relevent.

  5. #925
    Join Date
    Mar 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Does Super Oder 2.0 support multi-language ? because some error message apears when i try to commit some change with "The payment type" Module.


  6. #926
    Join Date
    Oct 2006
    Posts
    57
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Good Morning Guys,

    i installed the Super Orders Module and have a small problem. Everything works as supposed to except when I update the status of a product, and select Notify Customer, it gives me a Red X and the customer hasn't been notified by email.

    I already reinstalled everything, but it still hasn't changed. It used to work when i had everything installed on my Zen-Cart version 1.36. I have version 1.38a now.

    Any ideas what could be the problem?

    Thanks a lot for your help.

    Best Regards,

    Stuntsmovie.com

  7. #927
    Join Date
    Mar 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I just noticed sort of the same thing on my fresh install of Super Orders on a site I still have in developement StuntsMovie. Except since I was doing it with a Test order to myself I can see from my mailbox that the email was actually sent and delivered. However the Red X would certainly give a person the impression it wasn't sent when it was.

    On another subject, and I have a feeling I'm missing something here, I can't see where in SO it shows the actual shipping method chosen for the order. In my test cart USPS is the only option, but they can choose from Parcel Post, Priority Mail or Express Mail. In SO it shows United States Postal Service as the shipping method just fine, but I don't see where it tells me if someone wanted Parcel Post, Priority or Express service.

    Am I simply missing it somewhere? If not, is there a way to get this bit of info in the mix of the Details page somewhere as a reference?

  8. #928
    Join Date
    Oct 2006
    Posts
    109
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by StuntsMovie.com View Post
    Good Morning Guys,

    i installed the Super Orders Module and have a small problem. Everything works as supposed to except when I update the status of a product, and select Notify Customer, it gives me a Red X and the customer hasn't been notified by email.

    I already reinstalled everything, but it still hasn't changed. It used to work when i had everything installed on my Zen-Cart version 1.36. I have version 1.38a now.

    Any ideas what could be the problem?

    Thanks a lot for your help.

    Best Regards,

    Stuntsmovie.com
    I had the same problem, but there is a fix that was mentioned previously in the post that I integrated, and it worked for me. These are the instructions:
    ##############################____

    I have now made a further correction so that it now updates the customer notification change the lines from 353 to 356 in the super_batch_status.php file in admin from

    if ( ($check_status->fields['orders_status'] != $status) || zen_not_null($comments)) {
    update_status($oID, $status, $notify, $comments);

    if ($notify == 1) email_latest_status($oID);

    to the following code

    if ( ($check_status->fields['orders_status'] != $status) || zen_not_null($comments)) {
    $customer_notified = '0';
    if (isset($_POST['notify']) && ($_POST['notify'] == 'on')) {
    $customer_notified = '1';
    }

    update_status($oID, $status, $customer_notified, $comments);

    if ($customer_notified == '1') {
    email_latest_status($oID);
    }

    I hope this does the trick with everyone who has had trouble with not being able to send emails in the batch status.
    ##################################################

    Again, not sure if that will work for you, but it did the trick for me!

  9. #929
    Join Date
    Mar 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Ixnay my question regarding shipping detail not showing up in SO. I found the answer, or actually a couple of them back on page 78 of this thread. That should do the job. Dunno if I was searching wrong, not holding my mouth just right or if the forum search is just a bit lacking like most of them are.

    I do still have the Red X issue if anybody can point me to that one. I wasn't using any batch processes. And the mail gets sent. The indicator is just the opposite of what it should be for me.

    I'm off to scan through some more pages to see if I can spot a fix for that one!

  10. #930
    Join Date
    Mar 2008
    Posts
    11
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Hey, I'm a fast reader if nothing else. ;)

    Found topcat24's post being the last one on page 91, referencing a slightly older post with a fix that worked a treat!

    Ya'll a wonderful. Now if I could get get the forum search to pull those for me.

 

 

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