Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
271 views
in Q2A Core by
Hi,

I work with Tags description Plugin. i need to active Ckeditor for This Plugin. My mean show ckeditor for tag description textarea . how do ?
Q2A version: Last

1 Answer

0 votes
by
edited by

You can come true by modifying a little my plugin.

Plugin:

WYSIWYG Editor for admin for Q2A standard CKEditor
 OR
CKEditor4 for admin for CKEditor4

Plugin hacks:

Target source: qa-wysiwyg-editor-admin-layer.php / qa-ckeditor4-admin-layer.php

Code:

// if (empty($firstrequest) || $firstrequest != 'admin') return;
if (empty($firstrequest) || ($firstrequest != 'admin' && $firstrequest != 'tag-edit')) return;
Plugin settings:
 
Add "tagdesc" to "Name list of TEXTAREA tag ..." option in admin panel of upper plugin.
...