Title: wp-includes/js/tinymce/plugins/WordPress/plugin.min.js
Last modified: December 26, 2021

---

# wp-includes/js/tinymce/plugins/WordPress/plugin.min.js

 *  Resolved [shovonkhan109](https://wordpress.org/support/users/shovonkhan109/)
 * (@shovonkhan109)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/wp-includes-js-tinymce-plugins-wordpress-plugin-min-js/)
 * This error – wp-includes/js/tinymce/plugins/WordPress/plugin.min.js pops up in
   only Forminator form in my several websites. I have included one form link here.
   I have talked to the hosting provider (Siteground), they said everything is fine
   from their side. I have also tried updating, reinstalling WordPress, deactivating
   other plugins, etc. Nothing worked. This is only happing with Forminator forms.
   Please check and provide a solution.
 * Also, the form is also not working at all. No conditions set to fields are working,
   every field is visible.
    -  This topic was modified 4 years, 5 months ago by [shovonkhan109](https://wordpress.org/support/users/shovonkhan109/).
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fwp-includes-js-tinymce-plugins-wordpress-plugin-min-js%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  [Kris – WPMU DEV Support](https://wordpress.org/support/users/wpmudevsupport13/)
 * (@wpmudevsupport13)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/wp-includes-js-tinymce-plugins-wordpress-plugin-min-js/#post-15198117)
 * Hi [@shovonkhan109](https://wordpress.org/support/users/shovonkhan109/)
 * I hope you are doing good today.
 * This is a known issue on some servers when hosting load the script with capital
   letters:
    `wp-includes/js/tinymce/plugins/WordPress/plugin.min.js` when this 
   should be: `wp-includes/js/tinymce/plugins/wordpress/plugin.min.js`
 * Could you please try to install the following snippet in a new MU plugin as shown
   here:
 * > [Must Use Plugins](https://wordpress.org/support/article/must-use-plugins/)
 *     ```
       <?php
   
       add_filter(
       	'script_loader_tag',
       	function( $tag, $handle ) {
       		if ( 'tiny_mce' === $handle ) {
       			$tag = str_replace( '/WordPress/plugin.min.js', '/wordpress/plugin.min.js', $tag );
       		}
       		return $tag;
       	},
       	10,
       	2
       );
       ```
   
 * Let us know does that helps for both cases.
 * Kind Regards,
    Kris
 *  Thread Starter [shovonkhan109](https://wordpress.org/support/users/shovonkhan109/)
 * (@shovonkhan109)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/wp-includes-js-tinymce-plugins-wordpress-plugin-min-js/#post-15198321)
 * I have just tried that but still the error appears. And the directory is in the
   small letter – `public_html>wp-includes>js>tinymce>plugins>wordpress`
 * I created and installed mu-plugins with your snippet on this site – [https://www.medmunity.com/post-an-article/](https://www.medmunity.com/post-an-article/)
 *  [Kris – WPMU DEV Support](https://wordpress.org/support/users/wpmudevsupport13/)
 * (@wpmudevsupport13)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/wp-includes-js-tinymce-plugins-wordpress-plugin-min-js/#post-15201307)
 * Hi [@shovonkhan109](https://wordpress.org/support/users/shovonkhan109/)
 * On the above page, error seems to be still the same and point issue with capital
   letters.
 * Could you remove above mu-plugin and test this one as mu-plugin as well?
 *     ```
       <?php
       add_filter('forminator_tinymce_args', function( $args ){
       if( is_string( $args ) ){
       $args = str_replace('WordPress', 'wordpress', $args);
       }
       return $args;
       });
       ```
   
 * Kind Regards,
    Kris
 *  Thread Starter [shovonkhan109](https://wordpress.org/support/users/shovonkhan109/)
 * (@shovonkhan109)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/wp-includes-js-tinymce-plugins-wordpress-plugin-min-js/#post-15201586)
 * Thank you so much, this worked.
 * Update – I figured out the other problem related to the form not hiding conditional
   fields. Thanks again.
    -  This reply was modified 4 years, 5 months ago by [shovonkhan109](https://wordpress.org/support/users/shovonkhan109/).
    -  This reply was modified 4 years, 5 months ago by [shovonkhan109](https://wordpress.org/support/users/shovonkhan109/).

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

The topic ‘wp-includes/js/tinymce/plugins/WordPress/plugin.min.js’ is closed to 
new replies.

 * ![](https://ps.w.org/forminator/assets/icon-256x256.gif?rev=3443182)
 * [Forminator Forms – Contact Form, Payment Form & Custom Form Builder](https://wordpress.org/plugins/forminator/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/forminator/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/forminator/)
 * [Active Topics](https://wordpress.org/support/plugin/forminator/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/forminator/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/forminator/reviews/)

## Tags

 * [tinymce error](https://wordpress.org/support/topic-tag/tinymce-error/)

 * 4 replies
 * 2 participants
 * Last reply from: [shovonkhan109](https://wordpress.org/support/users/shovonkhan109/)
 * Last activity: [4 years, 5 months ago](https://wordpress.org/support/topic/wp-includes-js-tinymce-plugins-wordpress-plugin-min-js/#post-15201586)
 * Status: resolved