Title: TinyMCE causes problems after update
Last modified: July 6, 2019

---

# TinyMCE causes problems after update

 *  Resolved [fredsjo](https://wordpress.org/support/users/fredsjo/)
 * (@fredsjo)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/tinymce-causes-problems-after-update/)
 * Hi
    After updating several of my extensions my PageSpeed score fell dramatically.
   This is what blocking: …autoptimize/autoptimize_332481f….php(skadedyr.net) 74
   KB 1 380 ms …jquery/jquery.js(skadedyr.net) 32 KB 930 ms …tinymce/tinymce.min.
   js(skadedyr.net) 111 KB 1 680 ms …compat3x/plugin.min.js(skadedyr.net) 2 KB 480
   ms
 * The main problem is tinymce.min.js..? Where do I start to solve this?
 * And why is …autoptimize/autoptimize_332481f….php so large all of the sudden?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ftinymce-causes-problems-after-update%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 8 replies - 1 through 8 (of 8 total)

 *  Plugin Author [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/tinymce-causes-problems-after-update/#post-11706349)
 * tinymce is excluded from JS optimization, but you can remove said exclusion in
   AO JS’s optimization exclusion list.
 * the size of the Autoptimized files is the size of your combined CSS or JS. the
   more plugins you have that spit out code, the bigger your autoptimized CSS/ JS.
 * hope this clarifies,
    frank
 *  Thread Starter [fredsjo](https://wordpress.org/support/users/fredsjo/)
 * (@fredsjo)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/tinymce-causes-problems-after-update/#post-11706443)
 * Yeah. But I haven’t figured out what TinyMCE really is..? Is it any problem with
   removing it from the exclusion list?
 * About the size of the Autoptimized JS file, that’s ok. But the size tripled in
   size after I updated my extensions.. Thats strange. Any way to figure out what
   extension thats the biggest?
 * Thanks a lot for your awesome help!
 *  Plugin Author [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/tinymce-causes-problems-after-update/#post-11706447)
 * tinymce is the “old” HTML editor which maybe is used to let someone add text 
   in bold or italic or … you can always remove the exclusion and see what gives,
   but if you don’t need it it would be even better to find out what (plugin or 
   theme) is adding that and doing away with it.
 * re. filesize; load your site with `?ao_noptimize=1` appended to the URL and look
   at the network tab in your browser’s developer tools to see what the filesizes
   for each file loaded are?
 *  Thread Starter [fredsjo](https://wordpress.org/support/users/fredsjo/)
 * (@fredsjo)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/tinymce-causes-problems-after-update/#post-11706686)
 * Again: thanks.
 * I removed it from excluded, and can’t see any different at my page.. May be a
   small thing some where, but nothing critical. I don’t quite know how to figure
   out what plugin that uses it, but i only got plugins that are essential to me.
 * I tried to find size your way. In Safari it don’t show anything about size unfortunately.
   So then I’m a but stuck.
 * If this is a 2 second-ting for you: [https://skadedyr.net/?ao_noptimize=1](https://skadedyr.net/?ao_noptimize=1)
 * Would really appreciate it.
 * I also see that the “remove unused CSS” has also increased a lot after my update.
   So the score is really bad now.
 *  Plugin Author [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/tinymce-causes-problems-after-update/#post-11706744)
 * there you go;
 * ![](https://i0.wp.com/pix.toile-libre.org/upload/original/1562438382.jpg)
 * so paypal’s JS is huge, but AO can’t optimize that and then the major culprit
   is some plugin (or your theme) adding all these gutenberg JS-files (which _normally_
   are for usage on the backoffice), all from `wp-includes/js/dist`. finding out
   which plugin is doing so will require you to disable plugins and check your HTML
   for occurrence of `wp-includes/js/dist`, but once you know who’s doing to you
   can contact the developer and [ask him/ her not to mess with your front-end’s speed](https://blog.futtta.be/2019/03/18/developers-dont-make-gutenberg-go-badass-enberg-on-my-frontend/)?
 *  Thread Starter [fredsjo](https://wordpress.org/support/users/fredsjo/)
 * (@fredsjo)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/tinymce-causes-problems-after-update/#post-11707504)
 * Ahhh! Thank you so much! 5/5 stars for you 😀
 * I will talk to the developer.
 * What about the unused CSS?
    …autoptimize/autoptimize_fb40b3c….php(skadedyr.net)
   74 KB 70 KB
 * Is this “normal” size?
 *  Plugin Author [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/tinymce-causes-problems-after-update/#post-11707538)
 * ah, unused CSS is a curse in environments such as WordPress (or Joomla or Drupal
   or …) as each theme/ plugin adds CSS which covers all of the use cases where 
   the plugin (or theme) can be used in. this means that each individual CSS-file
   on your site has _a lot_ of code in it that isn’t strictly needed on a random
   page of your site (or may even not be needed on your site at all). there currently
   is no way to automate the removal of unneeded CSS, but you might be able to get
   some improvement using e.g. “plugin organizer” to only allow plugins to work 
   on specific pages) and by creating a child theme that only has the CSS needed
   for your site (you’ll have to dequeue the parent theme CSS though).
 * hope this clarifies,
    frank
 *  Plugin Author [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/tinymce-causes-problems-after-update/#post-11707541)
 * > Ahhh! Thank you so much! 5/5 stars for you
 * well, feel free to [leave a review of the plugin and support here](https://wordpress.org/support/plugin/autoptimize/reviews/#new-post)!
   🙂

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘TinyMCE causes problems after update’ is closed to new replies.

 * ![](https://ps.w.org/autoptimize/assets/icon-256X256.png?rev=2211608)
 * [Autoptimize](https://wordpress.org/plugins/autoptimize/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/autoptimize/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/autoptimize/)
 * [Active Topics](https://wordpress.org/support/plugin/autoptimize/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/autoptimize/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/autoptimize/reviews/)

 * 8 replies
 * 2 participants
 * Last reply from: [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * Last activity: [6 years, 11 months ago](https://wordpress.org/support/topic/tinymce-causes-problems-after-update/#post-11707541)
 * Status: resolved