add_filter( 'fl_ace_editor_settings', function( $args ) {
$args['enableBasicAutocompletion'] = false;
$args['enableLiveAutocompletion'] = false;
return $args;
});
1 Like
I guess we can also set other Ace editor options the same way?
Yes You can add any you like
Sample for BB Theme:
// --------------------------------------------------------------
// Ace Editor options
// --------------------------------------------------------------
function custom_ace_editor() {
$custom = array(
'showLineNumbers' => true,
'wrap' => true,
);
return $custom;
}
add_filter( 'fl_ace_editor_settings', 'custom_ace_editor' );