Page 30 of 53 FirstFirst ... 20282930313240 ... LastLast
Results 291 to 300 of 524
  1. #291
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Export Shipping & Order Information

    You would have to develop a CRON job and alter the script a bit to get that to work.
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  2. #292
    Join Date
    Feb 2008
    Posts
    129
    Plugin Contributions
    0

    Default Re: Export Shipping & Order Information

    Hi Eric,

    Is 1.3.3 available yet? I don't see it on the download page.

    Thanks.

  3. #293
    Join Date
    Feb 2008
    Posts
    129
    Plugin Contributions
    0

    Default Re: Export Shipping & Order Information

    Hi Eric,

    One other question. Thanks for your post a few months ago that contained examples for changing the php code so that it remembers default settings.

    I think you may have a mistake. You put:
    Code:
    <input type="radio" name="status_target" value="1">Any Order Status<br />
    But judging by the code you already have in there, I think you meant
    Code:
    <input type="radio" name="status_target" value="1" checked>
    Also I wonder if you could give us an example for a radio button being drawn by zen_draw, such as
    Code:
    <?php echo zen_draw_radio_field('filelayout', '1')?>&nbsp;<?php echo TEXT_FILE_LAYOUT_OPR_FIELD; ?>
    Thanks.

  4. #294
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Export Shipping & Order Information

    Quote Originally Posted by susb8383 View Post
    Hi Eric,

    Is 1.3.3 available yet? I don't see it on the download page.

    Thanks.
    Not yet. It looks to be mainly a bug fix at the moment and the goal is to get it out here within the next several weeks at the latest.

    I was looking to see what added functionality might be worth including as well, but again, looks to be mainly a bug fix at the moment.

    Will post here when it is ready.
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  5. #295
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Export Shipping & Order Information

    Quote Originally Posted by susb8383 View Post
    One other question. Thanks for your post a few months ago that contained examples for changing the php code so that it remembers default settings.

    I think you may have a mistake. You put:
    Code:
    <input type="radio" name="status_target" value="1">Any Order Status<br />
    But judging by the code you already have in there, I think you meant
    Code:
    <input type="radio" name="status_target" value="1" checked>
    Yes, you are correct here. IF the field is defined as you listed then to make it checked, you must add the 'checked' indicator to the tag. Thanks for that. Read on below to see how to do it when zen is drawing the checkbox or radio button.



    Quote Originally Posted by susb8383 View Post
    Also I wonder if you could give us an example for a radio button being drawn by zen_draw, such as
    Code:
    <?php echo zen_draw_radio_field('filelayout', '1')?>&nbsp;<?php echo TEXT_FILE_LAYOUT_OPR_FIELD; ?>
    To default check a radio button that zen draws do this:

    Code:
    <?php echo zen_draw_radio_field('filelayout', '1' , $filelayout=true)?>&nbsp;<?php echo TEXT_FILE_LAYOUT_OPR_FIELD; ?>
    To do the same thing with a checkbox drawn by zen do this:

    Code:
    <?php echo zen_draw_checkbox_field('shipmethod', '1', $shipping_method_checked=true);?>&nbsp;<?php echo TEXT_SHIPPING_METHOD_FIELD; ?><br />
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  6. #296
    Join Date
    Feb 2008
    Posts
    129
    Plugin Contributions
    0

    Default Re: Export Shipping & Order Information

    Quote Originally Posted by econcepts View Post



    To default check a radio button that zen draws do this:

    Code:
    <?php echo zen_draw_radio_field('filelayout', '1' , $filelayout=true)?>&nbsp;<?php echo TEXT_FILE_LAYOUT_OPR_FIELD; ?>
    That worked great, thanks.

  7. #297
    Join Date
    Aug 2008
    Posts
    50
    Plugin Contributions
    0

    Default Re: Export Shipping & Order Information

    For some reason when I export, only 20 orders are exported, no matter if ran per order/per product and including already downloaded orders.

    The latest version crashes when Product Details is selected. The new version has bug fix for states which drop orders, but trying to fix this bug in the older version and download the browsers in a state of constant loading.

    Any ideas?

    Thanks guys

  8. #298
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Export Shipping & Order Information

    So what version are you using now?

    Does anything show up in your error log? (admin cache)

    What's the url to the site?
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  9. #299
    Join Date
    Mar 2011
    Posts
    4
    Plugin Contributions
    0

    Default Re: Export Shipping & Order Information

    Hi,

    We are running our report and beyond the testing data (live customer info), the reports are NOT including name (first or last) and address.

    Any ideas why it would have been doing it, now it is not?

    v1.3.9h

    Thanks

  10. #300
    Join Date
    Nov 2009
    Location
    Aurora, IN
    Posts
    37
    Plugin Contributions
    0

    Default Re: Export Shipping & Order Information

    I am using this on 1.3.8a installation, and it works great. I was wondering if you could implement, or tell me how to be able to export only a certain group of orders, based on group pricing. I am no programmer, and maybe there is a simple way to do this. It would be a huge help. Thank you.

 

 
Page 30 of 53 FirstFirst ... 20282930313240 ... LastLast

Similar Threads

  1. Export Shipping+Order Information plugin not exporting some orders
    By woemlavy in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 22 Mar 2013, 02:01 PM
  2. v138a Trouble Installing Export Shipping+Order Information
    By scripto in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 16 Jan 2013, 11:36 PM
  3. Export Shipping/Order Information - dump down to 2 sheets or XML
    By sbbemn in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 4 Oct 2012, 05:37 PM
  4. Export Shipping / Order Information
    By digruk in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 28 Oct 2011, 08:25 PM
  5. Export Shipping Order Information doesn't include downloadable products?
    By rcaroe in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 31 Jul 2010, 05:14 PM

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