• Hello, 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 2 years, 5 months ago by maximeschoeni.
Viewing 1 replies (of 1 total)
  • 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.

Viewing 1 replies (of 1 total)
  • The topic ‘Script is still present in wp-admin’ is closed to new replies.