Nested ordered list in tinymce
Finally (thanks to tinymce forum) i found the answer : when i’m on “second item” for example just have to click on and that will create a sub-list
Finally (thanks to tinymce forum) i found the answer : when i’m on “second item” for example just have to click on and that will create a sub-list
I fixed it by adding the following script after making the Ajax call: tinymce.execCommand(‘mceRemoveEditor’, false, ‘customEditor’); tinymce.execCommand(‘mceAddEditor’, false, ‘customEditor’);
Sounds like you are using the wrong software 😉 wordpress is not really designed nor should it be used as an html editor. If for whatever reason you need some concrete HTML format you should either use a shortcode to generate it or create a page template to be used in the places where it … Read more
Understanding automatic text formatting in the WordPress editor
How to get values from Tinymce visual editor popup?
Technically, this is an issue with TinyMCE, not with WordPress, but WP does provide a gateway to TinyMCE, which allows you to change settings. Your solution might look something like this: add_filter (‘tiny_mce_before_init’, ‘wpse303889_tiny_filter’); function wpse303889_tiny_filter ($in) { $in[‘entity_encoding’] = ‘raw’; return $in; } Setting the entity_encoding filter to ‘raw’ supposedly allows you to get … Read more
TinyMCE function causes issue in AVADA theme
I got the solution as @Sally CJ posted comment in my question. Setting quicktags to true did the job for me.
It might be difficult to completely eliminate all of TinyMCE’s quirks when it comes to editing HTML. Another (clunky?) work round would be to set up shortcodes for the unordered list. When you then apply the shortcodes, the HTML will be output to the browser without manipulation from TinyMCE. For example: function ul_func( $atts ){ … Read more
Am I right to think colorpicker is still supported and just disabled? Yes, it is still supported; however, it’s not disabled, and it’s actually loaded by default by WordPress, because the textcolor plugin (which is also loaded by default by WordPress) depends on the colorpicker plugin. I was hoping just adding the button would work. … Read more