This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: remove the ASP button in the editor

Home Forums Product Support Forums Ajax Search Pro for WordPress Support remove the ASP button in the editor Reply To: remove the ASP button in the editor

#47490
Ernest MarcinkoErnest Marcinko
Keymaster

That should work though, maybe putting it to the actual hook for a delay:

add_filter('admin_head', function(){
	remove_action('admin_head', 'wpdreams_asp_add_mce_button');
	remove_action('admin_head', 'wpdreams_asp_mce_generate_variable');
	remove_filter( 'mce_external_plugins', 'wpdreams_asp_add_tinymce_plugin' );
	remove_filter( 'mce_buttons', 'wpdreams_asp_register_mce_button' );
});