Page 10 of 38 FirstFirst ... 8910111220 ... LastLast
Results 91 to 100 of 373
  1. #91
    Join Date
    Apr 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: Order Editor 1.3.7 Issues

    I have read through the threat but can't find the fix to fix the issue of emails not being sent to customers when you update the status or add comments.

    How do I go about fixing the code?

  2. #92
    Join Date
    Jun 2005
    Posts
    95
    Plugin Contributions
    0

    Default Re: Order Editor 1.3.7 Issues

    I get this seeing when updating an order

    Fatal error: Cannot use object of type queryFactoryResult as array inFatal error: Cannot use object of type queryFactoryResult as array in XXXX/public_html/shop/admin/edit_orders.php on line 185

    Plus it isnt updating the orders either.

  3. #93
    Join Date
    May 2008
    Posts
    9
    Plugin Contributions
    1

    Default Re: Order Editor 1.3.7 Issues

    Quote Originally Posted by infocom View Post
    a bit old this thread but I am getting this too when using this mod.

    In edit_orders.php on lines 185 and 186 the fields for customer email address ( and name and date_purchased) are wrong.

    Notice the $check_status['customers_email_address'] should be $check_status->fields['customers_email_address'].

    Wrong code:-
    Code:
    $email = STORE_NAME . "\n" . EMAIL_SEPARATOR . "\n" . EMAIL_TEXT_ORDER_NUMBER . ' ' . $oID . "\n" . EMAIL_TEXT_INVOICE_URL . ' ' . zen_catalog_href_link(FILENAME_CATALOG_ACCOUNT_HISTORY_INFO, 'order_id=' . $oID, 'SSL') . "\n" . EMAIL_TEXT_DATE_ORDERED . ' ' . zen_date_long($check_status['date_purchased']) . "\n\n" . $notify_comments . sprintf(EMAIL_TEXT_STATUS_UPDATE, $orders_status_array[$status]);
    zen_mail($check_status['customers_name'], $check_status['customers_email_address'], EMAIL_TEXT_SUBJECT, $email, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);
    Correct Code:-
    Code:
    $email = STORE_NAME . "\n" . EMAIL_SEPARATOR . "\n" . EMAIL_TEXT_ORDER_NUMBER . ' ' . $oID . "\n" . EMAIL_TEXT_INVOICE_URL . ' ' . zen_catalog_href_link(FILENAME_CATALOG_ACCOUNT_HISTORY_INFO, 'order_id=' . $oID, 'SSL') . "\n" . EMAIL_TEXT_DATE_ORDERED . ' ' . zen_date_long($check_status->fields['date_purchased']) . "\n\n" . $notify_comments . sprintf(EMAIL_TEXT_STATUS_UPDATE, $orders_status_array[$status]);
    zen_mail($check_status->fields['customers_name'], $check_status->fields['customers_email_address'], EMAIL_TEXT_SUBJECT, $email, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);



    by infocom
    http://www.zen-cart.com/forum/showth...otify+Customer

  4. #94
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Order Editor 1.3.7 Issues

    edit orders
    zen cart 1.3.8a
    super orders also installed.

    when i try to delete an item by entering 0, the cart says successfully updated and i don't get an error but it does not remove the product. i can change quantity from 2 to 1, but i cannot change from 1 to 0.

    how do you delete items from an order?

    thanks.

  5. #95
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Order Editor 1.3.7 Issues

    follow up:

    after entering 0 and updating to remove and item from an order. it seems to adjust the total but it does not remove the item. the item is still listed.

    how do i fix that.

    thanks.

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

    Default Re: Order Editor 1.3.7 Issues

    if no one else has encountered this (entering 0 to remove an item, but it does not get removed and does not give an error), does anyone at least have a guess as how to fix it???

  7. #97

    Default Re: Order Editor 1.3.7 Issues

    I used the add products part of this mod in another mod I worked on - Drop Shipping w/ PDF Packing Lists. So, I had to fix the attributes for that. I was able to integrate these fixes into Edit Orders, fix the Status/Comments problems, and integrate the other fixes that were detailed on this thread. I've uploaded a new version, 1.5, of this mod that seems to fix all problems that I can find. Please be aware--attributes are TRICKY! I've added a ton of information to the db that this mod wasn't processing before, but not every little detail gets updated when you are dealing with attributes. As far as I can tell, Zen Cart doesn't even use all the data in TABLE_ORDER_PRODUCTS_ATTRIBUTES, so I don't think this will be much of an issue, but you have all been warned! Use this at your own risk.

    v 1.5 5/24/08 - Scott Turner
    NOTE: 1.5 - Works With Zen Cart 1.3.8
    1. Fixed Issues with Adding a Product With Attributes
    2. Adding Products with Attributes Will Automatically Recalculate Price
    3. Fixed Issue with Deleting a Product (Thanks zc_tester)
    4. Fixed Issue with Editing a Product Attribute (Thanks zc_tester)
    5. Added Ability to Edit Product Attributes Price Increases/Decreases
    -- NOTE: This will not change the unit price - this must be edited manually.
    6. Corrected PHP tags
    7. Fixed Problems with Status/Comments Updates & Emails


    LINK -- Just updated it, so it will probably take a day or two to show up.

    Enjoy!

  8. #98
    Join Date
    Mar 2007
    Location
    Pepperell, Massachusetts
    Posts
    232
    Plugin Contributions
    1

    Default Re: Order Editor 1.3.7 Issues

    Thanks for your work! I just installed 1.5 into my cart.

  9. #99
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Order Editor 1.3.7 Issues

    brilliant update srturner47!!!!!

  10. #100
    Join Date
    Mar 2008
    Location
    Florida
    Posts
    30
    Plugin Contributions
    0

    Default Re: Order Editor 1.3.7 Issues

    I'm beginning to go bald in the spot where I keep pulling my hair out. I've tried this module several times, and was in hopes that this latest update would work properly, but it doesn't. I think I've figured out the reason, but don't know what to do about it.

    I think that it is a config file issue, because I changed the name of my admin file for security reasons, and that's where it's looking. Since this module wouldn't know that, I'm pretty sure that there must be a config file that is telling it where to look. Can someone please point me in the right direction?

    Thanks in advance for your consideration.

    Shepherd

 

 
Page 10 of 38 FirstFirst ... 8910111220 ... LastLast

Similar Threads

  1. Editor issues with images
    By amebb in forum General Questions
    Replies: 0
    Last Post: 18 May 2011, 04:45 PM
  2. html editor issues?
    By 510ego in forum General Questions
    Replies: 2
    Last Post: 24 Feb 2011, 05:07 PM
  3. IE 7 issues with tables in ezpage editor
    By perkiekat in forum General Questions
    Replies: 2
    Last Post: 11 Nov 2009, 12:13 PM
  4. Page Editor and Mod Security issues
    By Scarlet in forum Installing on a Linux/Unix Server
    Replies: 9
    Last Post: 23 Apr 2009, 12:59 AM
  5. Define Pages Editor Issues
    By jemenvy in forum General Questions
    Replies: 3
    Last Post: 5 Apr 2007, 08:21 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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR