Title: Removing button from TinyMCE editor
Last modified: August 31, 2016

---

# Removing button from TinyMCE editor

 *  Resolved [timothyf](https://wordpress.org/support/users/timothyf/)
 * (@timothyf)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/removing-button-from-tinymce-editor/)
 * I want to remove the MailPoet button added to the row of buttons in the TinyMCE
   page/post editor so that my client will never click on that button. My client
   is the curious type who will test whatever is available, and I’ve already removed
   other buttons that I don’t want him to use. How do I remove the MailPoet button
   from that row? TIA, Tim
 * [https://wordpress.org/plugins/wysija-newsletters/](https://wordpress.org/plugins/wysija-newsletters/)

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

 *  [Wysija](https://wordpress.org/support/users/wysija/)
 * (@wysija)
 * [10 years ago](https://wordpress.org/support/topic/removing-button-from-tinymce-editor/#post-7375689)
 * Try this code:
 *     ```
       add_action('admin_init', 'mailpoet_remove_tinymce_subscription_form_icon');
       function mailpoet_remove_tinymce_subscription_form_icon(){
           if(defined('WYSIJA')){
               $helper_back = WYSIJA::get( 'back' , 'helper' );
               remove_action('admin_head-post-new.php',array($helper_back,'addCodeToPagePost'));
               remove_action('admin_head-post.php',array($helper_back,'addCodeToPagePost'));
           }
       }
       ```
   
 * Add it to your functions.php file inside your current theme folder.
 *  Thread Starter [timothyf](https://wordpress.org/support/users/timothyf/)
 * (@timothyf)
 * [10 years ago](https://wordpress.org/support/topic/removing-button-from-tinymce-editor/#post-7375697)
 * Perfect! Thanks!

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

The topic ‘Removing button from TinyMCE editor’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wysija-newsletters_ffddcc.svg)
 * [MailPoet Newsletters (Previous)](https://wordpress.org/plugins/wysija-newsletters/)
 * [Support Threads](https://wordpress.org/support/plugin/wysija-newsletters/)
 * [Active Topics](https://wordpress.org/support/plugin/wysija-newsletters/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wysija-newsletters/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wysija-newsletters/reviews/)

## Tags

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

 * 2 replies
 * 2 participants
 * Last reply from: [timothyf](https://wordpress.org/support/users/timothyf/)
 * Last activity: [10 years ago](https://wordpress.org/support/topic/removing-button-from-tinymce-editor/#post-7375697)
 * Status: resolved