Hi,
i add this code in the functions.php file:
add_filter(‘wpdm_user_dashboard_menu’,’my_custom_dashboard_menus’,10,1);
// $menu_items is an array containing current menu items
function my_custom_dashboard_menus($menu_items){
// Removing edit profile menu
unset($menu_items[‘edit-profile’]);
}
however all the user area disappeared. I only want that people cannot have access to the “Edit Profile” to change their name or password but still see their downloads. Is it possible? Thanks