Title: Anonymized export?
Last modified: June 24, 2024

---

# Anonymized export?

 *  Resolved [therealgilles](https://wordpress.org/support/users/chamois_blanc/)
 * (@chamois_blanc)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/anonymized-export/)
 * Hello, is there a way to anonymize first/last names and emails for an export?

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

 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/anonymized-export/#post-17847006)
 * It’s possible using php code.
 * more details [https://docs.algolplus.com/algol_order_export/hooks-filters/](https://docs.algolplus.com/algol_order_export/hooks-filters/)
 * you should add php code to section Misc Settings (at bottom)
 *  Thread Starter [therealgilles](https://wordpress.org/support/users/chamois_blanc/)
 * (@chamois_blanc)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/anonymized-export/#post-17874339)
 * Thank you, this is helpful!
 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/anonymized-export/#post-17874549)
 * please, share final php code if you can
 *  Thread Starter [therealgilles](https://wordpress.org/support/users/chamois_blanc/)
 * (@chamois_blanc)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/anonymized-export/#post-17916962)
 * Here is what it looks like. `md5` is good enough for my purpose.
 *     ```wp-block-code
       // Billingadd_filter( 'woe_get_order_value_billing_first_name', function ( $value, $order, $fieldname ) {    return md5( $value );}, 10, 3);add_filter( 'woe_get_order_value_billing_last_name', function ( $value, $order, $fieldname ) {    return md5( $value );}, 10, 3);add_filter( 'woe_get_order_value_billing_email', function ( $value, $order, $fieldname ) {    return md5( $value );}, 10, 3);// Order numberadd_filter( 'woe_get_order_value_order_number', function ( $value, $order, $fieldname ) {    return md5( $value );}, 10, 3);
       ```
   
 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/anonymized-export/#post-17918461)
 * 👍

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

The topic ‘Anonymized export?’ 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/)

 * 5 replies
 * 2 participants
 * Last reply from: [algol.plus](https://wordpress.org/support/users/algolplus/)
 * Last activity: [1 year, 10 months ago](https://wordpress.org/support/topic/anonymized-export/#post-17918461)
 * Status: resolved