Page 128 of 202 FirstFirst ... 2878118126127128129130138178 ... LastLast
Results 1,271 to 1,280 of 2020
  1. #1271
    Join Date
    Oct 2006
    Posts
    64
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I'm hoping someone else may have experineced this issue. I have ben using SO for a long time now for batch update and batch print. Both of those pages all of a sudden changed the other day.

    Those pages now only show:
    Date range selection
    current status
    ordered product
    and customer menus.

    The missing sections are all the menus on the other side of the page such as:

    payment method
    order total
    text search
    and the search button.

    Its really strange as I have not made any code changes or server changes at all and everything else is still working as usual. The only thing I have changed recently was that I added a new template but I have changed back to the old templat and it did not fix the issue. Any insight would be greatly appreciated.

    Thanks
    JON

  2. #1272
    Join Date
    Aug 2007
    Location
    Williston, Vermont
    Posts
    182
    Plugin Contributions
    1

    Default Re: Super Orders 2.0

    Does the browser have a horizontal scroll bar at the bottom of the page, that is, did the menu items not really disappear but move off the screen?

  3. #1273
    Join Date
    Oct 2006
    Posts
    64
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    No I wish that was the case. the menus are actually not on the page anymore. Looking at the source verifies this.

    Thanks though.

    Quote Originally Posted by carlvt88 View Post
    Does the browser have a horizontal scroll bar at the bottom of the page, that is, did the menu items not really disappear but move off the screen?

  4. #1274
    Join Date
    Sep 2008
    Posts
    605
    Plugin Contributions
    6

    Default Re: Super Orders 2.0

    Which page is this ? e.g.

    http://XXX/super_orders.php or http://XXX/super_batch.php

    Just the page name as I'm having a funny five minutes and have lost my place. (obviously I don't want your admin URL...yet).

  5. #1275
    Join Date
    Oct 2006
    Posts
    64
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    admin\super_batch_forms.php
    and
    admin\super_batch_status.php

    Quote Originally Posted by carlvt88 View Post
    Does the browser have a horizontal scroll bar at the bottom of the page, that is, did the menu items not really disappear but move off the screen?
    Quote Originally Posted by philip_clarke View Post
    Which page is this ? e.g.

    http://XXX/super_orders.php or http://XXX/super_batch.php

    Just the page name as I'm having a funny five minutes and have lost my place. (obviously I don't want your admin URL...yet).

  6. #1276
    Join Date
    Sep 2008
    Posts
    605
    Plugin Contributions
    6

    Default Re: Super Orders 2.0

    on around line 147 in the file admin/super_batch_forms.php you should have

    HTML Code:
               <td valign="top"><table border="0" cellspacing="3" cellpadding="0">
                  <tr>
                    <td class="smallText"><?php echo HEADING_SEARCH_PAYMENT_METHOD; ?></td>
                    <td class="smallText" colspan="3"><?php echo zen_draw_pull_down_menu('payments', $payments, $_GET['payments'], ''); ?></td>
    if you add a word like HELLO

    HTML Code:
                <td valign="top">HELLO<table border="0" cellspacing="3" cellpadding="0">
                  <tr>
                    <td class="smallText"><?php echo HEADING_SEARCH_PAYMENT_METHOD; ?></td>
                    <td class="smallText" colspan="3"><?php echo zen_draw_pull_down_menu('payments', $payments, $_GET['payments'], ''); ?></td>
    That should pop up where you are missing the boxes. Of course if you don't have the code, then that could be the problem !

    Now if it doesn't turn up you could look at admin/includes/languages/english/super_batch_forms.php because say if a < had popped into one of the defines, the it could muck up the html (although I acknowledge that you've said 'view source' shows it not appearing as HTML).

    Philip.

  7. #1277
    Join Date
    Oct 2006
    Posts
    64
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Thank you for your response. I tried ading the "hello" as you sugested but nothing shows up. I also checked the admin/includes/languages/english/super_batch_forms and it doe snot appear to have any issues. I'm baffled as I really have not made any changes that would have any connection to this. That section of the code does not appear even at the source level.

    Quote Originally Posted by philip_clarke View Post
    on around line 147 in the file admin/super_batch_forms.php you should have

    HTML Code:
               <td valign="top"><table border="0" cellspacing="3" cellpadding="0">
                  <tr>
                    <td class="smallText"><?php echo HEADING_SEARCH_PAYMENT_METHOD; ?></td>
                    <td class="smallText" colspan="3"><?php echo zen_draw_pull_down_menu('payments', $payments, $_GET['payments'], ''); ?></td>
    if you add a word like HELLO

    HTML Code:
                <td valign="top">HELLO<table border="0" cellspacing="3" cellpadding="0">
                  <tr>
                    <td class="smallText"><?php echo HEADING_SEARCH_PAYMENT_METHOD; ?></td>
                    <td class="smallText" colspan="3"><?php echo zen_draw_pull_down_menu('payments', $payments, $_GET['payments'], ''); ?></td>
    That should pop up where you are missing the boxes. Of course if you don't have the code, then that could be the problem !

    Now if it doesn't turn up you could look at admin/includes/languages/english/super_batch_forms.php because say if a < had popped into one of the defines, the it could muck up the html (although I acknowledge that you've said 'view source' shows it not appearing as HTML).

    Philip.

  8. #1278
    Join Date
    Sep 2008
    Posts
    605
    Plugin Contributions
    6

    Default Re: Super Orders 2.0

    So to confirm, you do have the PHP code but HELLO or the other side does not show up even when changes are made ?

    Put a hello in the top of the page, I can't remember on IE but it's something like shift+ctrl+R or f5 to refresh and clear the cache and if the HELLO does not show up then the wrong file is being edited or it's being cached. The next question would be where is the right file ? and that's a tricky one since it's in admin it is unlikely to have a template override where one file is being loaded in preference to another. I assume you have re-uploaded the file just in case of corruption (thinking to myself at the moment that this is a stupid comment to make because if you've edited the file to add HELLO then the file must be reasonably intact to have found the line).

    Try adding Hello to another file like the super_orders.php main file, or creating a new file on the system and visiting it, because I know this may sound strange but the only thing I can think of it is that your hosting company moved your files and you're editing the wrong ones, it's the only thing that expains the non-appearance of the HELLO and the changes happening without youu doing anything.

    Philip.

  9. #1279
    Join Date
    Oct 2006
    Posts
    64
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Yes I put the hello in the page and refreshed and the hello did show up in the source of the page so I am loading the correct file it seems but the other menus are still gone. It is very strange. I can't for the life of me figure out what could have happened or be causing this. I actually have a test site on another server and on the test site things are still working fine so I copied all the associated files from the test site and copied them over for good measure and still no change.


    Quote Originally Posted by philip_clarke View Post
    So to confirm, you do have the PHP code but HELLO or the other side does not show up even when changes are made ?

    Put a hello in the top of the page, I can't remember on IE but it's something like shift+ctrl+R or f5 to refresh and clear the cache and if the HELLO does not show up then the wrong file is being edited or it's being cached. The next question would be where is the right file ? and that's a tricky one since it's in admin it is unlikely to have a template override where one file is being loaded in preference to another. I assume you have re-uploaded the file just in case of corruption (thinking to myself at the moment that this is a stupid comment to make because if you've edited the file to add HELLO then the file must be reasonably intact to have found the line).

    Try adding Hello to another file like the super_orders.php main file, or creating a new file on the system and visiting it, because I know this may sound strange but the only thing I can think of it is that your hosting company moved your files and you're editing the wrong ones, it's the only thing that expains the non-appearance of the HELLO and the changes happening without youu doing anything.

    Philip.

  10. #1280
    Join Date
    Sep 2008
    Posts
    605
    Plugin Contributions
    6

    Default Re: Super Orders 2.0

    Can you PM me, with the details because it looks like I'll have to have a look at it since you're editing the correct file and I can't think of anything to recreate this scenario.

    Philip.

 

 

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