Viewing 15 replies - 1 through 15 (of 25 total)
  • Hi Theo,

    Can you please let me know which version of plugin you are using and WooCommerce version too ?
    Also, let me know the error you are getting.

    Thanks

    Thread Starter TheoMartin

    (@theomartin)

    I am not receiving any error of any kind.

    The version of the plugin I am using is the latest one (Version 1.1.0).

    Theo

    I’m having the same issue.
    Button isn’t working.
    My Woocommerce version is 2.2.8.
    Anything new ?

    Hello Theo and che_idan,

    Please note following points:

    1. Minimum WooCommerce version required is 2.2.10
    2. You have to select options like Customer name, Product info, Amount, Email etc., then click Save Settings button.
    After this , please select any two dates and the click Export Orders button to download the csv. CSV will get downloaded automatically.

    Let me know if this procedure works for you.

    Thanks

    I think it’s working now with WC 2.2.8 !
    I reinstalled the plugin and it works well. Thanks !

    Is it possible to add a more fields to the CSV ? like Date, Order Number, address etc…

    Hi che_idan,

    Good to know that its working for you, although I haven’t tested it in WC 2.2.8, I would recommend that you should upgrade your WC plugin.

    Regarding adding more fields:

    There are certain hooks given in plugin which will help you to add more fields in csv. If you have some programming experience in WordPress, then you can easily do the same.

    Thanks

    Thanks a lot !
    It’s very easy to hook.
    For example, for adding billing address I just added:

    To main.php:
    ‘wc_settings_tab_customer_address’=>__( ‘Address’, ‘woocommerce-simply-order-export’ )
    — under wpg_order_columns

    to order-export.php:
    ‘address’ => array(‘name’ => __( ‘Address’, ‘woocommerce-simply-order-export’ ),’type’ => ‘checkbox’,’desc’ => __( ‘Address’, ‘woocommerce-simply-order-export’ ),’id’ => ‘wc_settings_tab_customer_address’),
    — under get_settings() function

    and to order-export-process.php:
    if( !empty( $fields[‘wc_settings_tab_customer_address’] ) && $fields[‘wc_settings_tab_customer_address’] === true )
    {
    array_push( $csv_values, self::customer_meta( get_the_ID(), ‘_billing_address_1’ ) );
    }
    — under while($orders->have_posts()) loop

    That’s great che_idan.
    All the best ??

    It doesn’t work. The button does nothing. I just downloaded your plugin so assume I have the latest version and my woocommerce is 2.2.11. Does the date have to be in a certain format?

    One suggestion: adding the address would help massively. Thanks

    Hi miro1979,

    I have checked the plugin and all seems to be working fine. It should work with your WooCommerce version.

    Please check if you have any JS error in browser console.

    Regarding date format:
    When you will click on start date and end date textbox, there will pop-up a calendar from which you can select dates. Just for your information, date format would be yyyy-mm-dd

    Let me know if you have any query.

    Nope, still nothing. Tried another browser and is still doesn’t work.
    It doesn’t show any js error in safari. Is there anything else I should do? Thanks

    Hi miro1979,

    Please clear your browser cache and try again.

    Are you getting any error or notice ?

    Let me know.

    I am not getting any error and I’ve cleared cache on safari and chrome and still nothing. It looks like it’s inactive. Clicking on export does nothing but it lets me to save settings. Have no idea what to do. Please help

    Could you please message me at https://www.facebook.com/shrthngz, if you have an Facebook profile ?

    I can help you there better way personally.

Viewing 15 replies - 1 through 15 (of 25 total)
  • The topic ‘Export Order button not working’ is closed to new replies.