Switch between WYSIWYG and plain for user
Here you go:
function my_anspress_form_settings($settings){
$settings['quicktags'] = true;
return $settings;
}
add_filter( 'ap_ask_form_editor_settings', 'my_anspress_form_settings');
add_filter( 'ap_answer_form_editor_settings', 'my_anspress_form_settings'); Rahul Aryan commented
As I said you have to do it by yourself, I will not add editor toggle by default. Why dont you use gist plugin for codes 😉
Great 🙂
Can you also add a button to toggle the two modes?