@helge,
You can remove the delete user icon (Delete Own Account button) from the user profile in wpForo by adding this CSS code to the Custom CSS textarea in your forum settings:
#wpforo #wpforo-wrap .wpforo-profile .wpforo-user-tools span.wpf-ab-delete {display:none}
To add this CSS:
- For Single Board Forum: Go to Dashboard > wpForo > Settings > Colors & Styles
- For Multi-Boards Forum: Go to Dashboard > [Your Board Name] > Settings > Colors & Styles tab
Alternatively, you can disable the delete account button programmatically by adding this code to your child theme's functions.php file or using the Code Snippets plugin:
add_filter('wpforo_can_user_self_delete', '__return_false');