Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author James Bradford

    (@arniebradfo)

    I will look into it.

    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?

    Plugin Author James Bradford

    (@arniebradfo)

    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.

    Plugin Author James Bradford

    (@arniebradfo)

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘is it possible to work in siteOrigin editor’ is closed to new replies.