I think what you may be overlooking is that it appears you did not upload the files from the "Optional Edits" folders which does indeed make this change..
Printable View
nope i used the optional edit files as per readme, very strange but anyhow its all fixed now and thanks for your help in getting it sorted
i was able to to a lil merge with latest version super orders and simple create order module
i took this peice of code from simple_create_orders\modifications\admin\oders.php
and injected it into admin/super_orders.php on line 1294Code:$contents[] = array('align' => 'center', 'text' => '<a href="' . zen_href_link(FILENAME_ORDER_EDIT, zen_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=edit', 'NONSSL') . '">' . zen_image_button('button_edit.gif', IMAGE_EDIT) . '</a> <a href="' . zen_href_link(FILENAME_ORDERS, zen_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=delete', 'NONSSL') . '">' . zen_image_button('button_delete.gif', IMAGE_DELETE) . '</a>');
and it seams to be working fine as i see the little edit button on the superorders page, and when i click on it it brings me to the edit order page yippy
i really don't know what i'm doing so if someone with more experience can check it out and see if it's an ok hack that would be great
I have a issue that is making me stop to use Super Orders.
When I go to Customers --> Super Orders and click on an order... and lets say I choose a new status (old status is pending) processing, I did place a check to this Check here to send change in status email to customer. I check my email and the status says Pending. It doesn't change the status from pending to processing. But i do get the emails.
So I go to Customers --> Orders and use the regular order and it works just fine and in email too.
What could be an issue? What file do you need to check? thank you.
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:
Replace with: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>';
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>
-->
=========================================
I also wanted to share on other minor edit I made to edit_orders.php to use with Super Orders. This will add an additional button that takes you back to the Super Orders detail page for the current order from the "Add Product" section of Edit Orders. (Currently there is only a "Back" button that returns you to the Edit Order page..)
Look for this:
A few lines down from there find this:Code:if($action == "add_product")
Replace with this: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>'; ?></td>
Code:<!-- BOF Edit to return to current order being edited instead of the order list page -->
<td class="pageHeading" align="right">
<?php echo '<a href="javascript:history.back()">' . zen_image_button('button_back.gif', IMAGE_BACK) . '</a>'; ?>
<?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_details.gif', IMAGE_ORDER_DETAILS) . '</a>'; ?></td>
</td>
<!-- EOF Edit to return to current order being edited instead of the order list page -->
I mis-spoke.. So let me be clearer here..:smile:
Currently in Edit Orders from the "Add Products" section there is only a "Back" button that returns you to the details page for the order you are adding products to.. With the change posted below there will be one button to take you back to to the order details page for the order you are adding products to and another button to take you back to the Edit Order page..
Does Super Orders support sales of multiple products to multiple shipping addresses without having customer making multiple orders. Single order would be preferred.