• Resolved hurab

    (@hurab)


    HI i have assigned my editor role to see and export the data of users but once it click export button it logs out the editor and does not export anything

    could you please guide

    Much Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author WebToffee

    (@webtoffee)

    Hi @hurab,

    It seems like the issue you are facing is because the user with which you have logged in is not having the permissions. By default, only the administrator and the shop manager has the permissions to export/import using the plugin. You may please copy the below code snippet to active theme’s functions.php to grant permission to the editor role.

    add_filter('hf_user_permission_roles','hf_user_permission_roles'); function hf_user_permission_roles($roles){ $roles = array('administrator', 'shop_manager','editor'); return $roles; }

Viewing 1 replies (of 1 total)
  • The topic ‘My Editor cannot export the user data’ is closed to new replies.