• Resolved devdtseweb92

    (@devdtseweb92)


    Hi,

    Is it possible to completely disable autosuggestion & autocompletion mode when writing a new message ? I know it is possible for users by disable option in back-office but I would like to disable it also for admin.

    Thanks in advance !!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Shamim Hasan

    (@shamim51)

    add following code in your theme’s (child theme’s if any) functions.php

    add_filter( 'fep_form_fields', function( $fields ){
    	$fields['message_to']['suggestion'] = false;
    	return $fields;
    });
    
    Thread Starter devdtseweb92

    (@devdtseweb92)

    Works great thanks !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable autosuggestion also for admin’ is closed to new replies.