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…