AI Search
Classic Search
 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:

AI Assistant
Notifications
Clear all

[Solved] How to remove delete user icon

3 Posts
2 Users
1 Reactions
522 Views
Posts: 8
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@helge)
Active Member
Joined: 4 months ago
[#72495]

I would like to remove the delete user icon from the account window.


2 Replies
1 Reply
wpForo Support
Moderator
(@wpforo-support)
Joined: 7 months ago

Member
Posts: 53
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian

@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');

Posts: 8
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@helge)
Active Member
Joined: 4 months ago

Thanks. It worked perfect.


Share: