Page 179 of 202 FirstFirst ... 79129169177178179180181189 ... LastLast
Results 1,781 to 1,790 of 2020
  1. #1781
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders 2.0

    Quote Originally Posted by [email protected] View Post
    yes this is correct but your missing what im actually saying yes it did update like you and the readme says, but if left orders aswell as super orders on the admin drop down menu if you clicked on either it went to super orders, but its pointless having to order buttons in the same menu both going to the same page
    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..
    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.

  2. #1782
    Join Date
    Aug 2006
    Posts
    42
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    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

  3. #1783
    Join Date
    Jun 2006
    Posts
    566
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    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

    Code:
              $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 injected it into admin/super_orders.php on line 1294

    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
    Last edited by MB1; 27 Jun 2010 at 10:35 PM.
    www.gorillagear.ca = zencart v1.3.9h with 40+ mods

  4. #1784

    Default Re: Super Orders 2.0

    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.

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

    Default Re: Super Orders 2.0

    Quote Originally Posted by osaeed View Post
    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.
    Are BOTH checkboxes checked??
    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.

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

    Default Re: Using Super Orders 2.0 with Edit Orders

    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
    Last edited by DivaVocals; 29 Jun 2010 at 09:07 PM.
    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.

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

    Default Re: Using Super Orders 2.0 with Edit Orders

    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:
    Code:
    if($action == "add_product")
    A few lines down from there find 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>
    Replace with this:
    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>'; ?>&nbsp;
                <?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 -->
    Last edited by DivaVocals; 29 Jun 2010 at 09:24 PM.
    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. #1788
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Using Super Orders 2.0 with Edit Orders

    To clarify, the code referenced below should be found around line 659 as virtualomega previously posted..

    Quote Originally Posted by DivaVocals View Post
    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>
                -->
    =========================================
    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.

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

    Default Re: Using Super Orders 2.0 with Edit Orders

    I mis-spoke.. So let me be clearer here..

    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..

    Quote Originally Posted by DivaVocals View Post
    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:
    Code:
    if($action == "add_product")
    A few lines down from there find 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>
    Replace with this:
    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>'; ?>&nbsp;
                <?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 -->
    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. #1790
    Join Date
    Dec 2008
    Location
    Aspen, CO
    Posts
    25
    Plugin Contributions
    0

    Default Super Orders - Support Sales of Multiple Products Shipped to Multiple Addresses?

    Does Super Orders support sales of multiple products to multiple shipping addresses without having customer making multiple orders. Single order would be preferred.
    Gene Fourney | InteractiveWest
    PO Box 4272 | Aspen, CO 81612
    Email: [email protected]

 

 

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