There should be possible load editor in ACF fields.. For now Im using load js/css via this
public function __construct () {
add_action( 'before_wp_tiny_mce', array(&$this, 'tinymce_callback') );
}
public function tinymce_callback() {
printf( '<link rel="stylesheet" href="%s"></link>', HESH_LIBS . 'codemirror.min.css' );
printf( '<link rel="stylesheet" href="%s"></link>', HESH_LIBS . 'hesh.min.css' );
printf( '<script type="text/javascript" src="%s"></script>', HESH_LIBS . 'codemirror.min.js' );
printf( '<script type="text/javascript" src="%s"></script>', HESH_LIBS . 'hesh.min.js' );
}
Can you provide hash.js (without minification)?
Your selector for editor is ID instead of class “wp-core-ui wp-editor-wrap”. If you rewrite this,it can work for every wysiwyg fields.
I’m looking for this too.
Are there any news?
to clarify:
This is an issue with buttons not showing up in the editor bar, correct?
This is an issue with buttons not showing up in the editor bar, correct?
The HTML Editor Syntax Highlighter doesn’t appear at all in code editor inside “SiteOrigin editor” widget.