it is possible or is there eaesy way to use wp_editor()
as form submission
thanks
Hi,
If I understand you correctly, please check this topic: Rich text (HTML) editor for listing description contains textarea and label
I hope this is helpful to you.
yes exactly what iam looking for,
for anyone want filter the button more advanced, its also work flawlesss
thanks so much
$model['fields']['description']['editor'] = array(
'toolbr1' => 'styleselect, bullist, numlist, blockquote, link, wp_adv, quicklink, fullscreen, etc',);
hi another case, iam trying hook for hivepress message, but it seem doesnot work…
cant fill text area is not editable disabled cant type anyting inside,
maybe javascript conflict? or tinymce/wpeditor dont allow in popup???
add_filter('hivepress/v1/models/message', 'form_editor_offer', 999);
function form_editor_offer( $model ) {
$model['fields']['text']['editor'] = true;
}
maybe it also didnot work with your premium addons request because using same way,
//add_filter(‘hivepress/v1/forms/offer_make’, ‘form_editor_offer’, 999);
Thanks for sharing the solution! Yes, the editor may be loaded incorrectly inside the modal, it’s probably a conflict of Fancybox with TinyMCE editor scripts/styles.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.