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 disable user Title section

4 Posts
3 Users
1 Reactions
1,374 Views
forummember
Posts: 122
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
(@forummember)
Estimable Member
Joined: 3 years ago
[#50767]

Hi, I cannot find the setting on how to disable the user "Title" section.

See the attached email for reference.

 

2023 2 11 44 PM

3 Replies
VereK
Posts: 522
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
(@verek)
Honorable Member
Joined: 8 years ago

@forummember

There is no setting for that IIRC. You can however disable it css with {pointer-events: none;} using the applicable selector


Robert
Posts: 10749
Admin
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
(@robert)
Support Team
Joined: 3 months ago

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;
} );

1 Reply
forummember
(@forummember)
Joined: 3 years ago

Estimable Member
Posts: 122
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

Posted by: @robert

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;
} );

 

Thank you @Robert, appreciated.

 


Share: