How to load TinyMce cloud editor in WordPress with wp_editor()?
How to load TinyMce cloud editor in WordPress with wp_editor()?
How to load TinyMce cloud editor in WordPress with wp_editor()?
Based on the error text, it seems that the theme is trying to load a plugin for TinyMCE, not that TinyMCE is within the theme. Example: https://code.tutsplus.com/guide-to-creating-your-own-wordpress-editor-buttons–wp-30182t
Try this and adjust the tools as you wish: $settings = array( ‘text_area_name’=> ‘the_data’, ‘textarea_rows’ => 27, ‘teeny’ => false, ‘media_buttons’ => true, ‘quicktags’ => true, ‘tinymce’ => array ( ‘paste_as_text’ => true, ‘toolbar1’ => ‘formatselect, bold, italic, underline, bullist, numlist, blockquote, alignleft, aligncenter, alignright’, ‘toolbar2’ => ‘strikethrough, forecolor, pastetext, removeformat, charmap, link, unlink, redo, … Read more
Looking for a way to insert PDF image preview in TinyMCE
How to create custom toggle button in tinymce?
Change TinyMCE undeline outpout
CSS Styles specific to Admin Sidebar not loading
How to apply filters if editing specific template
Possibly a simpler way to handle this problem is just use the new wp_editor function (introduced in 3.3). The main drawback is described in the function description: … you cannot put it in meta-boxes that can be dragged and placed elsewhere on the page. Technically, you can, it’s just not going to play nice if … Read more
Basically, nested shortcodes should not be used. As you say it ends as being too complex for an author to write one and therefor it will be too complex to understand and modify. A better approach to such things is either insert a menu with a shortcode, or generate the accordion dynamically based on a … Read more