I have 2 html wysiwyg editors on a wordpress admin page. Both use WP_EDITOR() function. The first one is hard coded into the page:
<form name="form1" id="form1" method="post" action="" style="display:block;">
<p>
<!-- editor here -->
<?php
wp_editor( 'CONTENT WILL APPEAR HERE!', 'addsometxt', array('textarea_name'=>'create_txt','textarea_rows'=>10,'wpautop'=>false));
?>
</p>
<p>
<input name="save" type="submit" class="button-primary" id="save" style="margin:5px;" value="Save Input" /></p>
</form>
The second one is generated dynamically with a PHP function using an AJAX call (wp_ajax_ and $.post). I’ve test the ajax call and know it works; so, for brevity, here’s the php function:
<?php
function display_editor2() {
// grab data from database (data_from_db) and display in editor
wp_editor( $row->data_from_db, 'editsometxt', array('textarea_name'=>'edit_txt','textarea_rows'=>10,'wpautop'=>false));
}
?>
The problem is that even though the 2nd editor is displaying; it’s missing all the tool bar buttons. See image below for illustration. Anyone know who to fix this?
I had the same problem.
When I add the code
<?php wp_footer(); ?>
in my footer.php, it works.I had the exact same issue and solved it this way (WP 4.7):
First create an hidden editor in your template so WP load all the necessary files for TinyMCE (the ID doesn’t matter):
Then after you appended the new editor to the DOM, use the following functions:
Using
tinymce.init
didn’t worked for me, as the new editor ID wasn’t recognized. Those two lines reinstantiate the quicktags and add the new editor.Documentation
the problem is that you are using the same
$editor_id
for both editors ,editsometxt
, try to change it for the secondProbably you need to add media_buttons and tinymce parameter on your AJAX call.
Something like this:
I recommend you check wp_editor() Function Reference page at WordPress Codex.
Hey I too had the same problem!
I just deactivated all the plug-ins which are installed by me and refreshed the page, and then I tried to edit the post/pages in the visual area also. Check once it will work for you. 🙂
I hade the same problem, using this:
By passing a ID (second parameter to wp_editor) I got the buttons.
Like this: