Conversation
supportHello, thank you for plugin. I got an issue to report: at least from WP 6.0, emoji script is still present in wp admin (you can inspect the source code of any wp-admin page and search for “emoji”). This is because “remove_action( ‘admin_print_scripts’, ‘print_emoji_detection_script’ );” is called before the hook is actually added by WP. To make it work you need to call it afterward, like from “admin_init” hook: function disable_emojis_admin() { remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); } add_action( 'admin_init', 'disable_emojis_admin' ); This topic was modified 3 years, 12 months ago by maximeschoeni .
Confirming this issue on default WordPress 6.0 installation. I need WP emojis disabled on the Dashboard, where the WP emojis are interfering with emojis provided in widgets. Thank you for this plugin.
Confirming this issue on default WordPress 6.0 installation. I need WP emojis disabled on the Dashboard, where the WP emojis are interfering with emojis provided in widgets. Thank you for this plugin.