che_idan
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Simply Order Export] Export Order button not workingThanks 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_columnsto 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() functionand 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()) loopForum: Plugins
In reply to: [WooCommerce Simply Order Export] Export Order button not workingI 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…
Forum: Plugins
In reply to: [WooCommerce Simply Order Export] Export Order button not workingI’m having the same issue.
Button isn’t working.
My Woocommerce version is 2.2.8.
Anything new ?