Cannot type into Tinymce message textarea (conflict with Fancybox)

hivepress uses fancybox for its modal popup
and this conflicts with the default wordpress tinymce,
I am using this snippet for example…

add_filter('hivepress/v1/models/message', 'form_editor_offer', 999);
function form_editor_offer( $model ) {
	$model['fields']['text']['editor'] = true;
}

where it cannot type into wordpress tinymce textarea box,
because it loses focus, there are some simple suggestions from stackoverflow
https://stackoverflow.com/a/64356126/11934679 ,
but When I tried it it didn’t work,
maybe there is additional special code fix to hivepress.
any suggestions for that? would be appreciated…
image

Hi,

Thanks for reporting this, the bug is confirmed and we’ll fix it as soon as possible.

1 Like

hi, thank you for the replay, as a clarification,
this is not only for the plugin message form, it is just an example,
so the bug fix also must cover any all forms created with the hivepress framework,
under the folder includes/forms/class***.php , that enable…

'editor' => true,

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.