Title: Delete / Export Personal Data
Last modified: July 23, 2020

---

# Delete / Export Personal Data

 *  [pickme](https://wordpress.org/support/users/pickme/)
 * (@pickme)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/delete-export-personal-data/)
 * Hello!
 * I would like to give ‘Shop Manager’ the capability to acccess:
 * WP control panel > Tools > Erase personal data
    WP control panel > Tools > Export
   personal data
 * ‘Delete users’ capability does not add the above.
 * How would this be possible?
 * Thank you!

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

 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/delete-export-personal-data/#post-13168652)
 * Hi,
 * WordPress automatically maps user capabilities for this admin menu items to ‘
   manage_options’ capability.
 *     ```
       case 'export_others_personal_data':
       case 'erase_others_personal_data':
       case 'manage_privacy_options':
       	$caps[] = is_multisite() ? 'manage_network' : 'manage_options';
       			break;
       ```
   
 * If you wish to change this, try to re-map via ‘[map_meta_cap’](https://developer.wordpress.org/reference/hooks/map_meta_cap/)
   filter:
 *     ```
       return apply_filters( 'map_meta_cap', $caps, $cap, $user_id, $args );
       ```
   
 *  Thread Starter [pickme](https://wordpress.org/support/users/pickme/)
 * (@pickme)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/delete-export-personal-data/#post-13170858)
 * Hello,
 * Thank you for your support.
 * I added the filter as a snippet and enabled ‘manage_options’ capability for shop
   manager.
 * I did not manage to solely allow Erase personal data and Export personal data
   for the Shop Manager.
 * Could you please clarify on how to implement this?
 * Thank you
    -  This reply was modified 5 years, 9 months ago by [pickme](https://wordpress.org/support/users/pickme/).

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

The topic ‘Delete / Export Personal Data’ is closed to new replies.

 * ![](https://ps.w.org/user-role-editor/assets/icon-256x256.jpg?rev=1020390)
 * [User Role Editor](https://wordpress.org/plugins/user-role-editor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/user-role-editor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/user-role-editor/)
 * [Active Topics](https://wordpress.org/support/plugin/user-role-editor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/user-role-editor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/user-role-editor/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [pickme](https://wordpress.org/support/users/pickme/)
 * Last activity: [5 years, 9 months ago](https://wordpress.org/support/topic/delete-export-personal-data/#post-13170858)
 * Status: not resolved