Page 98 of 202 FirstFirst ... 488896979899100108148198 ... LastLast
Results 971 to 980 of 2020
  1. #971
    Join Date
    Feb 2008
    Posts
    35
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I was able to setup the lastest SO with ZC 1.3.8. with a minor modification to fix the Notify Customer Bug.
    I'm testing the Mod and could not do the following tasks I'm expecting from the Mod:
    1. Change the quantity of existing products in the order.
    2. Add new products to existing order.
    3. Update Payments: i.e.: capture fund, refund, credits,
    Any one cares to help me out regarding how to look for the above features in SO mod?
    Thanks,
    Kev

  2. #972
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Hey nguyenkhv,

    Which fix did you use to fix the notify customer bug???

    I was able to setup the lastest SO with ZC 1.3.8. with a minor modification to fix the Notify Customer Bug.
    thanks.

  3. #973
    Join Date
    Jul 2007
    Posts
    45
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by gsdcypher View Post
    starting over...

    i put both files back to their original state.

    i have super_orders_2.0 rev46

    i this the correct fix for rev46?
    Change the code below in admin\super_orders.php

    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);
              } 
    to

    Code:
    $notify = $_POST['notify'];
    if ( ($check_status->fields['orders_status'] != $status) || zen_not_null($comments)) {
        update_status($oID, $status, $notify, $comments);
    
        if ($notify == 'on') { 
             email_latest_status($oID);
        }
    is there another fix i have to apply to another file as well or just the fix above?

    thanks for your help.
    Yes that is all you have to do for rev46

  4. #974
    Join Date
    Sep 2004
    Posts
    1,388
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Quote Originally Posted by philip56 View Post
    I am pleased to say that I've solved most of this myself. Most of tthe settings were in the main stylesheet.css. The only things I'm struggling with are changing the font size and colour of the shop address on the invoice.

    I'm also still stuck on the invoice logo issue.

    Thanks in anticipation.

    Philip
    Looking into your problem, it looks like another small bug. super_invoice.php does not include a call to super_stylesheet.css in the header. Open admin/super_invoice.php and find this around line 58...
    Code:
    <link rel="stylesheet" type="text/css" href="includes/stylesheet.css">
    Make a new line under it and add this line...
    Code:
    <link rel="stylesheet" type="text/css" href="includes/super_stylesheet.css">
    Now then, if you look at the HTML for the invoice, you'll see that the block for the address has a class called invoiceHeading. You'll find that class defined in admin/includes/super_stylesheet.css. Modify to suit your needs.

    As for missing images, you're first going to have to determine what you've edited that would impact image displays. By default, the invoice displays the logo in the upper right. You'll find this call line around 104...
    Code:
    echo zen_image(DIR_WS_IMAGES . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '<br />';
    I'd start there. Did you mess with zen_image() at all? Are HEADER_LOGO_IMAGE and HEADER_ALT_TEXT defined in your admin configuration section? Does the image actually exist?
    Frank Koehl
    "Cleverly Disguised as a Responsible Adult"

    frankkoehl.com

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

    Default Re: Super Orders 2.0

    Quote Originally Posted by BlindSide View Post
    Looking into your problem, it looks like another small bug. super_invoice.php does not include a call to super_stylesheet.css in the header. Open admin/super_invoice.php and find this around line 58...
    Code:
    <link rel="stylesheet" type="text/css" href="includes/stylesheet.css">
    Make a new line under it and add this line...
    Code:
    <link rel="stylesheet" type="text/css" href="includes/super_stylesheet.css">
    Now then, if you look at the HTML for the invoice, you'll see that the block for the address has a class called invoiceHeading. You'll find that class defined in admin/includes/super_stylesheet.css. Modify to suit your needs.

    As for missing images, you're first going to have to determine what you've edited that would impact image displays. By default, the invoice displays the logo in the upper right. You'll find this call line around 104...
    Code:
    echo zen_image(DIR_WS_IMAGES . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '<br />';
    I'd start there. Did you mess with zen_image() at all? Are HEADER_LOGO_IMAGE and HEADER_ALT_TEXT defined in your admin configuration section? Does the image actually exist?

    Mant thanks Blindside - you have givven me a lot to go on.

    With reference to the images, you may be interested to learn that my problem is not just with SO generated images - it also extends to emails like the account creation one.

    I not aware of editing anything untoward - where in admin/configuration will I find HEADER_LOGO_IMAGE and HEADER_ALT_TEXT refered to?

    Once again, many thanks.

    Kind regards

    Philip

  6. #976
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Thanks topcat24. You have been very helpful (and patient).

    I appreciate it.

  7. #977
    Join Date
    Feb 2008
    Posts
    35
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by gsdcypher View Post
    Hey nguyenkhv,

    Which fix did you use to fix the notify customer bug???



    thanks.

    Hey gsdcypher,
    I followed instruction from another post:
    --------------
    In admin/includes/functions/extra_functions/super_orders_functions.php,
    in function update_status around line 401
    change if ($notified == 'on') to if ($notified == 1)

    ---------------
    Hope it helps.

  8. #978
    Join Date
    Sep 2004
    Posts
    1,388
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Passes beer to topcat.



    *clink!*
    Frank Koehl
    "Cleverly Disguised as a Responsible Adult"

    frankkoehl.com

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

    Default Re: Super Orders 2.0

    Quote Originally Posted by philip56 View Post
    Mant thanks Blindside - you have given me a lot to go on.

    With reference to the images, you may be interested to learn that my problem is not just with SO generated images - it also extends to emails like the account creation one.

    I not aware of editing anything untoward - where in admin/configuration will I find HEADER_LOGO_IMAGE and HEADER_ALT_TEXT refered to?

    Once again, many thanks.

    Kind regards

    Philip
    Many thanks BlindSide, your fix for the font size change worked a treat.

    With reference to my image problem, I must clarify - I am not having a problem displaying the image in the invoice and packing note but in all emails across the site.

    Regards

    Philip

  10. #980
    Join Date
    Feb 2008
    Posts
    35
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    To BlindSide,
    Do you know how to edit code so that I can remove the restriction on the number of products per order to display Product Images on packaging slip.
    I want to display products' images regardless the number of products.
    Thanks,

 

 

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