Archived topic
TinyMCE not displaying in IE
1 reply · Started by Max on July 13, 2016
Tom
I am using tiny MCE in bbpress.
It is displaying fine across FF and Chrome but disappears entirely in the reply form in IE.
After spending hours searching for a solution to this, I found a possible solution:
https://wordpress.org/support/topic/tinymce-not-working-in-internet-explorer?replies=10#post-8634842
The thread is here. I want to try it but am not sure where to insert the code (it does not run in my functionality plugin). The guy is saying to insert it into my themes js file how ever I am not sure where that is. You have folders filled with many GP js files.
Any help is greatly appreciated.
Kind Regards
Max
You could add a function like this:
add_action( 'wp_footer','max_bbpress_code' );
function max_bbpress_code()
{
?>
jQuery( document ).ready( function($) {
// Paste the code in here
});
<?php
}
Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/
