WordPress WYSIWYG editor on demand, responsive

Using the following code to FORCE the buttons to wrap when the width of the editor hit a certain width, I used this code: where single-movie-row is the container holding my WYSIWYG .single-movie-row .mceToolbar td { display:table-row; float: left; } .single-movie-row .mceToolbar td:nth-of-type(11){ clear: left; }

tinymce modal and I18n strings methods

While I can’t see any major fault in doing the way I proposed initially especially in relation to translation and localization, what I realised while researching this issue was that I was asking an ajax question. Basically what’s the most efficient method to initialize the I18n components of wordpress. Short of making a custom ajax … Read more

Inline Editing with wp_editor and tinymce (problem with textarea)

I am still experiencing with this, but here is how I got rid of the unwanted text area: if ( !is_admin() ) { //you might decide to change this conditional statement. //I found the filter in /wp-includes/class-wp-editor.php @249 add_filter(‘the_editor’, ‘my_remove_editor_te’); function my_remove_editor_te(){ $editor=””; return $editor; // or simply return; } } Here is how I … Read more