Title: Save Settings does not work
Last modified: January 9, 2018

---

# Save Settings does not work

 *  [calendarboy](https://wordpress.org/support/users/calendarboy/)
 * (@calendarboy)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/save-settings-does-not-work/)
 * After selecting which fields to export, if I click on Save Settings, it acts 
   like it is doing something.
    The next time I go to export orders, none of the
   settings are saved. Doesn’t seem like that is what was intended.
 * BTW. Love that you have the option to export First Name and Last Name as one 
   field. Wish you had an option to have City, State, Zip as one field.
 * Finally, this is the best export plugin I have found and I have tried at least
   four.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fsave-settings-does-not-work%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/save-settings-does-not-work/#post-9848336)
 * hi
 * thank you for the feedback.
 * ok, I’ll add field “City, State, Zip” in next update.
    If you need it now – I
   can provide custom code.
 * But I have to know exact error message.
 * Could you press “Save Settings” and check javascript errors?
    [Learn more ](https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors#Step_3:_Diagnosis)
 * Do you have access to webserver logs? Probably via ftp or cpanel ?
 * thanks, Alex
    -  This reply was modified 8 years, 5 months ago by [algol.plus](https://wordpress.org/support/users/algolplus/).
 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/save-settings-does-not-work/#post-9849913)
 * Following code adds 2 new fields
 *     ```
       // add field  "City State Zip"
       add_filter('woe_get_order_fields', function ($fields) {
       	$fields['billing_citystatezip'] = array( 'label' => 'City, State, Zip (Billing)', 'colname' => 'City, State, Zip (Billing)', 'checked' => 1 );
       	$fields['shipping_citystatezip'] = array( 'label' => 'City, State, Zip (Shipping)', 'colname' => 'City, State, Zip (Shipping)', 'checked' => 1 );
       	return $fields;
       });
       // calculate  new field
       add_filter('woe_get_order_value_billing_citystatezip', function ($value,$order, $field) {
       	$texts = array_filter( array(
       		$order->get_billing_city(),
       		$order->get_billing_state(),
       		$order->get_billing_postcode(),
       	));	
       	return join( ", ", $texts);
       }, 10, 3);
       // calculate  new field
       add_filter('woe_get_order_value_shipping_citystatezip', function ($value,$order, $field) {
       	$texts = array_filter( array(
       		$order->get_shipping_city(),
       		$order->get_shipping_state(),
       		$order->get_shipping_postcode(),
       	));	
       	return join( ", ", $texts);
       }, 10, 3);
       ```
   
 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/save-settings-does-not-work/#post-9888841)
 * Hi
 * Could you try to update the plugin ?
 * Code for button “Save Settings” was modified a bit.
    thanks, Alex

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Save Settings does not work’ is closed to new replies.

 * ![](https://ps.w.org/woo-order-export-lite/assets/icon-256x256.png?rev=1365554)
 * [Advanced Order Export For WooCommerce](https://wordpress.org/plugins/woo-order-export-lite/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-order-export-lite/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-order-export-lite/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-order-export-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-order-export-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-order-export-lite/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [algol.plus](https://wordpress.org/support/users/algolplus/)
 * Last activity: [8 years, 4 months ago](https://wordpress.org/support/topic/save-settings-does-not-work/#post-9888841)
 * Status: not resolved