Page 168 of 202 FirstFirst ... 68118158166167168169170178 ... LastLast
Results 1,671 to 1,680 of 2020
  1. #1671
    Join Date
    Apr 2008
    Posts
    351
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    I just want to duplicate what you are doing is all.

  2. #1672
    Join Date
    May 2008
    Posts
    452
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    You probably can't duplicate it...there's an implicit login to displaying the page in question.

    I also just validated another page with the EXACT same meta line, and it passed. I suspect there's something wrong in one of the php files being required above this line in the file. So, don't expend too much energy trying to debug that line.

    I'll post back if I find something.

  3. #1673
    Join Date
    Apr 2008
    Posts
    351
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    I found this to be a missing /> in the login.php file. Look on line 56 and add the /> and the error will go away.

    JT

  4. #1674
    Join Date
    May 2008
    Posts
    452
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Very good sleuthing, JTheed. There are also a couple of input statements in there that are also missing the "/" on their closing.

    Odd how the validator reported this (or didn't report it, depending on your point of view).

    In any event, it now validates. Thanks again for the help.

  5. #1675
    Join Date
    Apr 2010
    Posts
    4
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by DivaVocals View Post
    The other issue is that the "Back" button on the edit_orders.php page only takes you back to the the Super Orders order list page (super_orders.php). It should take you back to the detail page of the order you were editing.. It's minor and I can live with it..

    Gonna keep messing around and try to figure out how to correct this, but for now the major edits to join these two apps seems to work.. Thought I'd share.. Contemplating including this as an optional edit for Super Orders.. (if I can get the back button to work correctly) I'm also contemplating an optional edit for merging Admin Comments with Super Orders as well..
    To fix this Back button issue:

    In edit_orders.php on line 659, find:
    Code:
                <td class="pageHeading" align="right"><?php echo '<a href="' . zen_href_link(FILENAME_ORDERS, zen_get_all_get_params(array('action'))) . '">' . zen_image_button('button_back.gif', IMAGE_BACK) . '</a>';
    and replace with:
    Code:
                <td class="pageHeading" align="right"><?php echo '<a href="' . zen_href_link(FILENAME_SUPER_ORDERS, 'page=1&oID=' . $oID . '&action=edit', 'NONSSL') . '">' . zen_image_button('button_back.gif', IMAGE_BACK) . '</a>';

  6. #1676
    Join Date
    Apr 2008
    Posts
    351
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Quote Originally Posted by virtualomega View Post
    To fix this Back button issue:

    In edit_orders.php on line 659, find:
    Code:
                <td class="pageHeading" align="right"><?php echo '<a href="' . zen_href_link(FILENAME_ORDERS, zen_get_all_get_params(array('action'))) . '">' . zen_image_button('button_back.gif', IMAGE_BACK) . '</a>';
    and replace with:
    Code:
                <td class="pageHeading" align="right"><?php echo '<a href="' . zen_href_link(FILENAME_SUPER_ORDERS, 'page=1&oID=' . $oID . '&action=edit', 'NONSSL') . '">' . zen_image_button('button_back.gif', IMAGE_BACK) . '</a>';
    Thanks for the fix. Remember not to overwrite the ?></td> at the end of the line.

    JT

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

    Default Re: Super Orders 2.0

    Wow!! Thanks soooooooooo much.... Absolutely AWESOME!!!!!

    BTW, I will be putting together a new update for Super Orders with this and other foxes that have been posted or sent to me.. I'm a little tight on time right now but it will be posted in the next week or two.. Thanks to all who have posted fixes/updates.. You all ROCK!!!
    Quote Originally Posted by virtualomega View Post
    To fix this Back button issue:

    In edit_orders.php on line 659, find:
    Code:
                <td class="pageHeading" align="right"><?php echo '<a href="' . zen_href_link(FILENAME_ORDERS, zen_get_all_get_params(array('action'))) . '">' . zen_image_button('button_back.gif', IMAGE_BACK) . '</a>';
    and replace with:
    Code:
                <td class="pageHeading" align="right"><?php echo '<a href="' . zen_href_link(FILENAME_SUPER_ORDERS, 'page=1&oID=' . $oID . '&action=edit', 'NONSSL') . '">' . zen_image_button('button_back.gif', IMAGE_BACK) . '</a>';
    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.

  8. #1678
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    978
    Plugin Contributions
    6

    Default Re: Super Orders 2.0

    In \admin\edit_orders.php, I have the above code in two places - Lines 1048 and 1608.

    Do I have the right file? As the original reference says Line 659, my \admin\edit_orders.php must be substantially different.

    Nevertheless, do I apply the changes in both places.

    Best Regards

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

    Default Re: Super Orders 2.0

    This is what I get for doing drive-by postings before heading off to work in the mornings.. This is not a SUPER ORDERS fix, but an EDIT ORDERS fix..

    I will be happy to cross post this on the Edit Orders support thread if it hasn't been done already, but let me be clear that this code will NOT be included in the next Super Orders update.. However, what I will include in the next Super Orders update is an update to the README file with a link to the Edit Orders fix posted above.


    Quote Originally Posted by DivaVocals View Post
    Wow!! Thanks soooooooooo much.... Absolutely AWESOME!!!!!

    BTW, I will be putting together a new update for Super Orders with this and other foxes that have been posted or sent to me.. I'm a little tight on time right now but it will be posted in the next week or two.. Thanks to all who have posted fixes/updates.. You all ROCK!!!
    While cross posting the fix here is absolutely cool for those of us using both mods together.. We really should (myself included) take any FURTHER discussion of this fix over to the Edit Orders support thread as it really is an EDIT ORDERS fix..

    Quote Originally Posted by dw08gm View Post
    In \admin\edit_orders.php, I have the above code in two places - Lines 1048 and 1608.

    Do I have the right file? As the original reference says Line 659, my \admin\edit_orders.php must be substantially different.

    Nevertheless, do I apply the changes in both places.

    Best Regards
    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. #1680
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    978
    Plugin Contributions
    6

    Default Re: Super Orders 2.0

    Ma foi.

    I notice an Edit Orders support thread has recently been setup here commencing 27 January 2010. !!!

    http://www.zen-cart.com/forum/showthread.php?t=146652

    If you post elsewhere, could you please inform.

    TIA

 

 

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