Title: Export user registered date
Last modified: March 3, 2021

---

# Export user registered date

 *  [darylaurito](https://wordpress.org/support/users/darylaurito/)
 * (@darylaurito)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/export-user-registered-date/)
 * Hi support, can i check is the function to export user registered date already
   in the plugin or i have to add a custom filter?

Viewing 1 replies (of 1 total)

 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/export-user-registered-date/#post-14126077)
 * hi
 * Please, follow to [https://algolplus.freshdesk.com/support/solutions/articles/25000016635-add-calculated-field-for-order-](https://algolplus.freshdesk.com/support/solutions/articles/25000016635-add-calculated-field-for-order-)
 * use key “user_register_date” and this code
 *     ```
       add_filter('woe_get_order_value_user_register_date',function ($value, $order,$user_register_date) {
       $user_id = $order->get_user_id();
       if($user_id) {
           $userdata = get_userdata( $user_id );
           $value = $userdata->user_registered;
       }
       return $value;
       },10,3);
       ```
   
 * thanks, Alex

Viewing 1 replies (of 1 total)

The topic ‘Export user registered date’ 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/)

## Tags

 * [meta key](https://wordpress.org/support/topic-tag/meta-key/)

 * 1 reply
 * 2 participants
 * Last reply from: [algol.plus](https://wordpress.org/support/users/algolplus/)
 * Last activity: [5 years, 3 months ago](https://wordpress.org/support/topic/export-user-registered-date/#post-14126077)
 * Status: not resolved