Having a lot of difficulty getting add_editor_style() to load into source code

I have tried many different things to get add_editor_style() to load into the source code on my site without any luck. I would like to use editor-style.css to customize CSS properties for my WordPress WYSIWYG. However, I am unable to get it working. Even when I look in Chrome Inspector’s Resources tab and scroll down … Read more

TinyMCE strips line breaks on mceAddControl

I’m using wp_editor to add wysiwyg fields to admin edit screens. Each wysiwyg lives within a draggable meta box. Since TinyMCE has issues with dragging, I’m using the following code: // on the dragstart event tinyMCE.execCommand(‘mceRemoveControl’, false, the_editor_id); // on the dragstop event tinyMCE.execCommand(‘mceAddControl’, false, the_editor_id); The problem is that, when mceAddControl is fired, all … Read more

GUI-based or Web-based JSON editor that works like property explorer [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for … Read more

Remove_filter (‘the_content’, ‘wpautop’) is not working

I’ve tried disabling WP’s auto-paragraph thingy using remove_filter (‘the_content’, ‘wpautop’); but I am still getting my stuff wrapped in automatic <p> tags… What am I doing wrong? Its at the bottom of a functions file. Its not in functions.php, but in a file that functions.php includes (and putting it in functions.php doesn’t change the behaviour … Read more

Qtranslate + Advanced Custom Fields: how to have a multilanguage wysiwyg editor? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question This is my setup: WordPress: 3.4.2 qTranslate: 2.5.32 Advanced Custom Field: 3.5.1 i’ve also installed qTranslate extension: 1.1.1 but I don’t … Read more