Just wanted to post an update on this.. I tried virtualomega's fix (see previous post below), and it didn't work, but gave me a good hint on what the answer was..

In edit_orders.php 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>';
Replace with:
Code:
<!-- BOF Required Super Orders edit to return to  super_orders.php instead of orders.php -->
            <td class="pageHeading" align="right"><?php echo  '<a href="' . zen_href_link(FILENAME_SUPER_ORDERS,  zen_get_all_get_params(array('oID', 'action')) . 'oID=' . $oID .  '&action=edit', 'NONSSL') . '">' .  zen_image_button('button_back.gif', IMAGE_BACK) . '</a>';  ?></td>
<!-- EOF Required Super Orders edit to return to super_orders.php  instead of orders.php -->
            <!--
            <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>';  ?></td>
            -->
=========================================

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>';

Quote Originally Posted by DivaVocals View Post
With regards to the slight quirk I posted about previously where the back button is not functioning correctly when using Super Orders and Edit Orders together (see post below), here is the fix:
http://www.zen-cart.com/forum/showpo...postcount=1676