Title: This plugin enabled breaks text editor
Last modified: September 1, 2016

---

# This plugin enabled breaks text editor

 *  Resolved [Aziz](https://wordpress.org/support/users/azizpbrimah/)
 * (@azizpbrimah)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/this-plugin-enabled-breaks-text-editor/)
 * Having this plugin breaks the native WordPress text editor. It causes P tags 
   to be added and minifies the code when viewed. Are you aware of this? What is
   the fix?
 * [https://wordpress.org/plugins/youtube-showcase/](https://wordpress.org/plugins/youtube-showcase/)

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

 *  Plugin Author [emarket-design](https://wordpress.org/support/users/emarket-design/)
 * (@emarket-design)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/this-plugin-enabled-breaks-text-editor/#post-7596507)
 * We’re not aware of this issue and can not replicate it. The plugin does not have
   specific functionality to minimize code either.
 *  [Simon Barnett](https://wordpress.org/support/users/simbasounds/)
 * (@simbasounds)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/this-plugin-enabled-breaks-text-editor/#post-9180721)
 * It’s happening to me too. I narrowed down 32 plugins to this one.
    Naturally 
   it was the last one, seeing as the name begins with a “Y”. ..had to laugh.
 * Could it be any of these?
 * **class-install-deactivate.php**
 *     ```
       public function tinymce_fix($init) {
       	$init['wpautop'] = false;
       	return $init;
       }
       ```
   
 * **wysiwyg.php**
 *     ```
       static function value( $new, $old, $post_id, $field )	{
       	if($field['raw']) {
       		$meta = $new;
       	} else if( $field['clone'] ) {
       		$meta = array_map( 'wpautop', $new );
       	} else {
       		$meta = wpautop( $new );
       	}
       	return $meta;
       }
       ```
   
 *  Plugin Author [emarket-design](https://wordpress.org/support/users/emarket-design/)
 * (@emarket-design)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/this-plugin-enabled-breaks-text-editor/#post-9319798)
 * Thanks for reporting the issue.
 * I think wpautop was introduced to minimize white space when the text is saved
   with a hope that it will improve page loads. It looks like it messed up the readability
   of HTML in text mode. We will remove it in the next release.

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

The topic ‘This plugin enabled breaks text editor’ is closed to new replies.

 * ![](https://ps.w.org/youtube-showcase/assets/icon-256x256.png?rev=2252569)
 * [Video Gallery – YouTube Gallery & Responsive Video Playlist](https://wordpress.org/plugins/youtube-showcase/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/youtube-showcase/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/youtube-showcase/)
 * [Active Topics](https://wordpress.org/support/plugin/youtube-showcase/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/youtube-showcase/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/youtube-showcase/reviews/)

## Tags

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

 * 3 replies
 * 3 participants
 * Last reply from: [emarket-design](https://wordpress.org/support/users/emarket-design/)
 * Last activity: [8 years, 10 months ago](https://wordpress.org/support/topic/this-plugin-enabled-breaks-text-editor/#post-9319798)
 * Status: resolved