How can I use Markdown/CKEditor4 as the default editor for the Extra Field Plugin instead of the basic editor?
I don't know solution for Markdown editor. However if you are using default CKEditor or my CKEditor4, you will be able to apply editor to Extra Question Field. But this solution is required 1 hack.
1. Add either of plugins
2. Hack L31 of qa-wysiwyg-editor-admin-layer.php OR L18 of qa-ckeditor4-admin-layer.php
Before:
if (empty($firstrequest) || $firstrequest != 'admin') return;
After:
if (empty($firstrequest) || ($firstrequest != 'admin' && $firstrequest != 'ask')) return;
3. Add "extra?" to "Name list of TEXTAREA tag which applies WYSIWYG editor(separate comma)" option of plugin option panel. "extra?" is field name attribute which you added with my EQF plugin.
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.