Page 1 of 2 12 LastLast
Results 1 to 10 of 657

Hybrid View

  1. #1
    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 futurist71 View Post
    Hi All,

    I'm running 1.3.9h no Super Orders or Tracker installed. I'm using Edit Orders v3.0. I have read about what's happening to me in this thread but there is no answer. I just have Spanish Language and English installed, the main language is Spanish, the problem is when Adding a Product, I select Category --- Subcategory and when displaying products they are displayed in mixed language, the first 3 products are displayed in Spanish then the next 5 are in English. What should I modify?

    Regards.
    I'm having this exact same problem, but with French. When adding a product to an order, some of the products are showing in English and some are in French. My default admin language is English. Is there any way to force Edit Orders to use the English language only?

  2. #2
    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
    I'm having this exact same problem, but with French. When adding a product to an order, some of the products are showing in English and some are in French. My default admin language is English. Is there any way to force Edit Orders to use the English language only?
    Here's a screenshot of what I mean:

    Click image for larger version. 

Name:	Soap & Lotion Making Products & Supplies - Mozilla Firefox 722012 80916 PM.bmp.jpg 
Views:	148 
Size:	27.4 KB 
ID:	10735

    There doesn't seem to be any rhyme or reason to it.

  3. #3
    Join Date
    May 2005
    Location
    Australia
    Posts
    334
    Plugin Contributions
    2

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

    Greetings;

    I am getting the following error on top of the page, am i suppose to follow the instructions and delete the file;

    Error The auto-loader /home/delights/public_html/store/****/includes/auto_loaders/config.eo.php has not been deleted. For this module to work you must delete this file manually.

  4. #4
    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
    I'm having this exact same problem, but with French. When adding a product to an order, some of the products are showing in English and some are in French. My default admin language is English. Is there any way to force Edit Orders to use the English language only?
    Not sure if this is the correct code to modify, but can it be modified to somehow specify to select only products with a specific language_id?

    PHP Code:
            // ############################################################################
        //   Get List of All Products
        // ############################################################################

        //$result = zen_db_query("SELECT products_name, p.products_id, x.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 LEFT JOIN " . TABLE_CATEGORIES_DESCRIPTION . " x ON x.categories_id=ptc.categories_id ORDER BY categories_id");
            
    $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");
            
    #hile($row = zen_db_fetch_array($result))         {
          
    while (!$result -> EOF){
                
    extract($result->fields,EXTR_PREFIX_ALL,"db");
                
    $ProductList[$db_categories_id][$db_products_id] = $db_products_name;
                
    $CategoryList[$db_categories_id] = $db_categories_name;
                
    $LastCategory $db_categories_name;
             
    $result -> MoveNext();
            }

            
    // ksort($ProductList);

            
    $LastOptionTag "";
            
    $ProductSelectOptions "<option value='0'>Don't Add New Product" $LastOptionTag "\n";
            
    $ProductSelectOptions .= "<option value='0'>&nbsp;" $LastOptionTag "\n";
            foreach(
    $ProductList as $Category => $Products)
            {
                
    $ProductSelectOptions .= "<option value='0'>$Category$LastOptionTag "\n";
                
    $ProductSelectOptions .= "<option value='0'>---------------------------" $LastOptionTag "\n";
                
    asort($Products);
                foreach(
    $Products as $Product_ID => $Product_Name)
                {
                    
    $ProductSelectOptions .= "<option value='$Product_ID'> &nbsp; $Product_Name$LastOptionTag "\n";
                }

                if(
    $Category != $LastCategory)
                {
                    
    $ProductSelectOptions .= "<option value='0'>&nbsp;" $LastOptionTag "\n";
                    
    $ProductSelectOptions .= "<option value='0'>&nbsp;" $LastOptionTag "\n";
                }
            }
        
    // ############################################################################
        //   Add Products Steps
        // ############################################################################ 

  5. #5
    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]

    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..

    Quote Originally Posted by abcisme View Post
    Not sure if this is the correct code to modify, but can it be modified to somehow specify to select only products with a specific language_id?

    PHP Code:
            // ############################################################################
        //   Get List of All Products
        // ############################################################################

        //$result = zen_db_query("SELECT products_name, p.products_id, x.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 LEFT JOIN " . TABLE_CATEGORIES_DESCRIPTION . " x ON x.categories_id=ptc.categories_id ORDER BY categories_id");
            
    $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");
            
    #hile($row = zen_db_fetch_array($result))         {
          
    while (!$result -> EOF){
                
    extract($result->fields,EXTR_PREFIX_ALL,"db");
                
    $ProductList[$db_categories_id][$db_products_id] = $db_products_name;
                
    $CategoryList[$db_categories_id] = $db_categories_name;
                
    $LastCategory $db_categories_name;
             
    $result -> MoveNext();
            }

            
    // ksort($ProductList);

            
    $LastOptionTag "";
            
    $ProductSelectOptions "<option value='0'>Don't Add New Product" $LastOptionTag "\n";
            
    $ProductSelectOptions .= "<option value='0'>&nbsp;" $LastOptionTag "\n";
            foreach(
    $ProductList as $Category => $Products)
            {
                
    $ProductSelectOptions .= "<option value='0'>$Category$LastOptionTag "\n";
                
    $ProductSelectOptions .= "<option value='0'>---------------------------" $LastOptionTag "\n";
                
    asort($Products);
                foreach(
    $Products as $Product_ID => $Product_Name)
                {
                    
    $ProductSelectOptions .= "<option value='$Product_ID'> &nbsp; $Product_Name$LastOptionTag "\n";
                }

                if(
    $Category != $LastCategory)
                {
                    
    $ProductSelectOptions .= "<option value='0'>&nbsp;" $LastOptionTag "\n";
                    
    $ProductSelectOptions .= "<option value='0'>&nbsp;" $LastOptionTag "\n";
                }
            }
        
    // ############################################################################
        //   Add Products Steps
        // ############################################################################ 
    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.

  6. #6
    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.

  7. #7
    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!!!!

  8. #8
    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.

  9. #9
    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.

  10. #10
    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!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 817
    Last Post: 29 Apr 2026, 07:53 PM
  2. v150 Edit Orders v4.0 Support Thread
    By DivaVocals in forum Addon Admin Tools
    Replies: 1909
    Last Post: 22 Dec 2025, 03:25 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

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