Page 26 of 53 FirstFirst ... 16242526272836 ... LastLast
Results 251 to 260 of 524
  1. #251
    Join Date
    Jun 2010
    Posts
    44
    Plugin Contributions
    0

    Default Re: Export Shipping & Order Information

    Quote Originally Posted by econcepts View Post
    Currently the is no way to "save" your configuration (maybe an option I could consider for future versions) but you can preset options if you know php.

    To do this you would need to open the file shipping_export.php found in the root of the admin folder. Then scroll to the bottom where the form is generated and add "selected" etc... to the items you want to have preselected. I've done this on a number of installs and it works well.
    Can you give me an idea of what that might look like? I'm looking at the file right now, but I'm not sure I can see where I would add "selected".

  2. #252
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Export Shipping & Order Information

    For fields that have checkmarks, you would alter to read as follows:

    <?php echo zen_draw_checkbox_field('shipmethod', '1', $shipping_method_checked=true);?>&nbsp;<?php echo TEXT_SHIPPING_METHOD_FIELD; ?><br />
    For fields that are drop downs you would need to do this (where the highlighted part references the actual 'value' for the drop down element you want to pre-select):

    <?php echo zen_draw_pull_down_menu('order_status', $status_array, $default='5', 'id="order_status"'); ?>
    For any fields that are referenced through straight HTML you want to alter as follows:

    <input type="radio" name="status_target" value="1">Any Order Status<br />
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  3. #253
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: Export Shipping & Order Information

    Is there a way to include the header row in the e-mailed version?
    Danielle

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

    Default Re: Export Shipping & Order Information

    Did you check the box for exporting the header row? If so, let me know if it doesn't show in your file. I can take a look at adding that for the next version (I thought it added that to the file already though.)
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  5. #255
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: Export Shipping & Order Information

    Yes, I did check the box. I notice in the shipping_export.php file, it has this code about halfway through the file:

    // saving to a file for email attachement, so write and ready else do regular output (prompt for download)
    // Do not set headers becuase we are going to email the file to the supplier.
    //open output file for writing
    $f=fopen(DIR_FS_EMAIL_EXPORT.$file,'w+');
    fwrite($f,$str_export);
    //fwrite($f,$str_full_export);
    fclose($f);
    unset($f);
    It looks like if the file is going to be saved on the server and e-mailed, the header row is not included, even if the box is checked. How would I change that?

    Thanks!
    Danielle

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

    Default Re: Export Shipping & Order Information

    Hi Eric,

    It looks like this newest version has an addition field called Ship Destination Type.

    Can this field be added to the Select Additional Fields section so I can exclude it? To have a new field just pop up like this throws my whole import off (I'm automatically importing it into Access).

    Thanks, Susie

  7. #257
    Join Date
    Feb 2008
    Posts
    129
    Plugin Contributions
    0

    Default Re: Export Shipping & Order Information

    Two other things I noticed.

    1. When I changed downloaded_ship to no, that record did not show up again on the screen (it had in the past). Did you change something to look at more than that field for new records?

    2. These fields are now in a different place:
    product qty, product price, product name, product model, product attributes.

    In the old version, these fields were between order date and order tax. In the new they come at the end after order status.

    Any chance you could put these back to be in the same position they were before? Anyone who has the records automatically imported into something else will be messed up by this.

    I'm using these settings:
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	exportfields1.jpg 
Views:	48 
Size:	16.4 KB 
ID:	8072   Click image for larger version. 

Name:	exportfields2.jpg 
Views:	62 
Size:	14.6 KB 
ID:	8073  

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

    Default Re: Export Shipping & Order Information

    Quote Originally Posted by Danielle View Post
    Yes, I did check the box. I notice in the shipping_export.php file, it has this code about halfway through the file:



    It looks like if the file is going to be saved on the server and e-mailed, the header row is not included, even if the box is checked. How would I change that?

    Thanks!
    Make sure you are working with the newest version. The newest version has that section altered to include the header row. 1.3.2 is what you want.
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  9. #259
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Export Shipping & Order Information

    Quote Originally Posted by susb8383 View Post
    1. When I changed downloaded_ship to no, that record did not show up again on the screen (it had in the past). Did you change something to look at more than that field for new records?
    No, nothing else is looked at. That is the only field.

    Quote Originally Posted by susb8383 View Post
    2. These fields are now in a different place:
    product qty, product price, product name, product model, product attributes.

    In the old version, these fields were between order date and order tax. In the new they come at the end after order status.

    Any chance you could put these back to be in the same position they were before? Anyone who has the records automatically imported into something else will be messed up by this.
    In one of the original (very early) versions the way it is now is the way it should have been. Somewhere along the line the details changed. To be more relevant for the majority of users the field locations were put back to their original areas.

    Having said that, your import could likely be thrown off do the the addition of the new field Ship Dest Type. I have already marked this field as an optional field in the next release (1.3.3) so that has been completed now. Once I get a few other details in 1.3.3 I'll release it. If you want to send me a private message with your email I can email a copy of that to you (with the changes you need to the ship dest type field).
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  10. #260
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: Export Shipping & Order Information

    Oh...darn it lol, mine is quite heavily modified to include extra fields and remove other unnecessary fields. Can I just grab the header section from the 1.3.2 file and put it in my file, or are there other changes that would need to be made for that to work?
    Danielle

 

 
Page 26 of 53 FirstFirst ... 16242526272836 ... 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