Page 49 of 66 FirstFirst ... 39474849505159 ... LastLast
Results 481 to 490 of 657
  1. #481
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,360
    Plugin Contributions
    23

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

    But I figured it out - I uploaded the files again to be sure they were all there but it wasn't until I turned the subtotals back on and I did a new order did it work. So looks like turning off the subtotals screwed things up. Doesn't make any sense to me but it is working again.
    The full-time Zen Cart Guru. WizTech4ZC.com
    New template for 2.0 viewable here: 2.0 Demo

  2. #482
    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 delia View Post
    But I figured it out - I uploaded the files again to be sure they were all there but it wasn't until I turned the subtotals back on and I did a new order did it work. So looks like turning off the subtotals screwed things up. Doesn't make any sense to me but it is working again.
    This is good information to note, and I'll figure out the best way to add it to the readme for the new version..

    Out of curiosity, why would your client want to turn off the subtotals??
    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.

  3. #483
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,360
    Plugin Contributions
    23

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

    um, because he didn't know any better? They are using the cart in an odd fashion so he turned off a lot of things. Never seen anyone do that before though.
    The full-time Zen Cart Guru. WizTech4ZC.com
    New template for 2.0 viewable here: 2.0 Demo

  4. #484
    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 delia View Post
    um, because he didn't know any better? They are using the cart in an odd fashion so he turned off a lot of things. Never seen anyone do that before though.
    Oh.. Okay.. Got it.. I just wanted to make sure I wasn't missing some special use case I didn't know about.. Sounds like this is not something I even need to document.. unless I was documenting all the things NOT to do..
    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. #485
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,360
    Plugin Contributions
    23

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

    I'm glad I can make someone laugh today! Thanks again, dearie!
    The full-time Zen Cart Guru. WizTech4ZC.com
    New template for 2.0 viewable here: 2.0 Demo

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

  7. #487
    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:

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

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

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

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

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

 

 
Page 49 of 66 FirstFirst ... 39474849505159 ... 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