• I must say this plugin is very good.
    It working with bbPress, DWQA, and WPUF on my site.
    It adds code button in TinyMCE for these plugin. For bbPress no need to do coding work it adds button automatically.
    For WPUF you need to choose rich text field so the button will be added.
    For DWQA, must add fulter like this, see the button “crayon_tinymce”
    add_filter( ‘dwqa_tinymce_toolbar1’, ‘dwqa_disable_tinymce_options’,100 );
    function dwqa_disable_tinymce_options( $button ) {
    return ‘bold,italic,underline,|,’.’bullist,numlist,blockquote,|,’.’link,unlink,|,’ . ‘image,|,’.’spellchecker,fullscreen,|,crayon_tinymce’;
    }

    Anyway to make this plugin support more other plugins, you need dig into code.

  • The topic ‘It is working fine with a lot of plugin’ is closed to new replies.