Page 50 of 66 FirstFirst ... 40484950515260 ... LastLast
Results 491 to 500 of 657
  1. #491
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 [Support Thread]

    Quote Originally Posted by DivaVocals View Post
    Wish I could help, but the answer is a LOT over my head.. Hopefully someone else in the community knows the answer and will share..
    Man, I hope so. I just don't understand why it's showing some products listed in English and some in French. It makes no sense. There must be some way to compile the product list in only one language, using a "WHERE language_id = 1" condition in that query somewhere.. I just have NO CLUE what the syntax would be or how to go about implementing it. I'm kind of glad to know it isn't just me having the problem though.

  2. #492
    Join Date
    Jun 2012
    Posts
    21
    Plugin Contributions
    0

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 [Support Thread]

    does anyone know of anyway to make this work for version 1.5?


    Its really important!!!!

  3. #493
    Join Date
    Jun 2010
    Posts
    145
    Plugin Contributions
    0

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 [Support Thread]

    Quote Originally Posted by chava1106 View Post
    does anyone know of anyway to make this work for version 1.5?


    Its really important!!!!
    Did you read post #470? It's only three pages back.

  4. #494
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 [Support Thread]

    Quote Originally Posted by laurelsstitchery View Post
    Did you read post #470? It's only three pages back.
    Which is again why I always suggest reading through the support threads BEFORE posting...
    Last edited by DivaVocals; 3 Jul 2012 at 08:38 PM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #495
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 [Support Thread]

    Quote Originally Posted by abcisme View Post
    Man, I hope so. I just don't understand why it's showing some products listed in English and some in French. It makes no sense. There must be some way to compile the product list in only one language, using a "WHERE language_id = 1" condition in that query somewhere.. I just have NO CLUE what the syntax would be or how to go about implementing it. I'm kind of glad to know it isn't just me having the problem though.
    I found someone who could help me sort out this issue. Here is the fix to make it show only the default language, which in my case was language ID 1. If your language ID is something else, change language_id=1 to language_id=YOUR_ID

    in admin/edit_orders.php

    REPLACE:

    Code:
    $result = $db -> Execute("SELECT products_name, p.products_id, categories_name, ptc.categories_id FROM " . TABLE_PRODUCTS . " p LEFT JOIN " . TABLE_PRODUCTS_DESCRIPTION . " pd ON pd.products_id=p.products_id LEFT JOIN " . TABLE_PRODUCTS_TO_CATEGORIES . " ptc ON ptc.products_id=p.products_id LEFT JOIN " . TABLE_CATEGORIES_DESCRIPTION . " cd ON cd.categories_id=ptc.categories_id ORDER BY categories_name");
    WITH:

    Code:
    $result = $db -> Execute("SELECT products_name, p.products_id, categories_name, ptc.categories_id FROM zen_products p LEFT JOIN zen_products_description pd ON pd.products_id=p.products_id LEFT JOIN zen_products_to_categories ptc ON ptc.products_id=p.products_id LEFT JOIN zen_categories_description cd ON cd.categories_id=ptc.categories_id WHERE pd.language_id=1 ORDER BY categories_name");
    THEN REPLACE:

    Code:
    $result = $db -> Execute("SELECT * FROM " . TABLE_PRODUCTS_ATTRIBUTES . " pa LEFT JOIN " . TABLE_PRODUCTS_OPTIONS . " po ON po.products_options_id=pa.options_id LEFT JOIN " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov ON pov.products_options_values_id=pa.options_values_id WHERE products_id='$add_product_products_id'");
    WITH:

    Code:
    $result = $db -> Execute("SELECT * FROM " . TABLE_PRODUCTS_ATTRIBUTES . " pa LEFT JOIN " . TABLE_PRODUCTS_OPTIONS . " po ON po.products_options_id=pa.options_id LEFT JOIN " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov ON pov.products_options_values_id=pa.options_values_id WHERE products_id='$add_product_products_id' AND pov.language_id=1 AND po.language_id=1");

  6. #496
    Join Date
    Jan 2004
    Location
    Arkansas
    Posts
    111
    Plugin Contributions
    0

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 [Support Thread]

    Quote Originally Posted by chava1106 View Post
    does anyone know of anyway to make this work for version 1.5?


    Its really important!!!!
    The new version Diva has on the website works fine, just installed and used it. So you can wait until they get the readmes tweaked and it gets in the Zen Plugins as stated or download it from the website. I had no problems installing and using the current install instructions.
    Ted
    Never say never, it's only a matter of time, energy and asking the right person the right question!

  7. #497
    Join Date
    Jun 2010
    Posts
    145
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!

    Quote Originally Posted by DivaVocals View Post
    Yes this was already brought to my attention.. Will update the package later this evening..
    re: post #474 - has the package been updated? if so, do I just install over the old files with the auto installer again? let me know. thanks so much! :)

  8. #498
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!

    Quote Originally Posted by laurelsstitchery View Post
    re: post #474 - has the package been updated? if so, do I just install over the old files with the auto installer again? let me know. thanks so much! :)
    sorry.. 4th of July celebrations an work deterred me.. will get it uploaded tonight.. or if you know how, you can add these definitions to your orders.php language file..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #499
    Join Date
    Jun 2010
    Posts
    145
    Plugin Contributions
    0

    Default Re: Edit Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!

    Quote Originally Posted by DivaVocals View Post
    sorry.. 4th of July celebrations an work deterred me.. will get it uploaded tonight.. or if you know how, you can add these definitions to your orders.php language file..
    I do know how to add the definitions, so I did that and all is well now. Thanks, Diva! :)

  10. #500
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v4.0 for Zen Cart v1.5 is ALMOST ready to release!!!

    Quote Originally Posted by laurelsstitchery View Post
    I do know how to add the definitions, so I did that and all is well now. Thanks, Diva! :)
    You are welcome! Sorry.. I should have given you those instructions to begin with instead of having you wait on me.. Folks installing Super Orders along with Edit Orders won't have this same issue, and had I been more careful in my testing I would have discovered this..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

 

 
Page 50 of 66 FirstFirst ... 40484950515260 ... LastLast

Similar Threads

  1. v150 Edit Orders v4.0 Support Thread
    By DivaVocals in forum Addon Admin Tools
    Replies: 1877
    Last Post: 6 May 2025, 05:10 PM
  2. 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
  3. v150 Orders Status History -- Updated By [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 34
    Last Post: 29 Jul 2019, 07:05 PM
  4. 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
  5. 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

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