How-to and Troubleshooting
4
Posts
3
Users
1
Reactions
497
Views
Dec 05, 2023 11:14 am
Hi, I cannot find the setting on how to disable the user "Title" section.
See the attached email for reference.
3 Replies
Dec 05, 2023 2:27 pm
There is no setting for that IIRC. You can however disable it css with {pointer-events: none;} using the applicable selector
Dec 06, 2023 7:14 am
Hi @forummember,
You should use this hook code in a PHP code snippet of the Code Snippets plugin or directly in the functions.php file of your active theme:
add_filter('wpforo_member_after_init_fields', function ($fields){ if( isset($fields['title']) ) unset($fields['title']); return $fields; } );