Support

Account

Home Forums Backend Issues (wp-admin) ACF TinyMCE Color Picker

Helping

ACF TinyMCE Color Picker

  • Hi,

    I’m trying to change the color picker palette of the ACF WYSIWYG instance but can’t seem to manage it. I’ve read through the “Customize the WYSIWYG toolbars” article but I’m not sure how to change a plugin of the TinyMCE instance.

    Any ideas on how I should proceed? What’s the best method to add custom code to the ACF TinyMCE that won’t be removed when it’s updated?

    Regards,
    James

  • Hi @jamesjames

    Thanks for the question.

    You can make use of the wysiwyg_tinymce_settings filter to customize these settings.

    The code will look like so:

    acf.add_filter('wysiwyg_tinymce_settings', function( mceInit, id ){
    	
    	// do something to mceInit
    	
    	
    	// return
    	return mceInit;
    			
    });

    I hope this helps.

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘ACF TinyMCE Color Picker’ is closed to new replies.