WPIntell

Source evidence

Script is still present in wp-admin

Disable Emojis (GDPR friendly) · support · 2022-06-03T12:18:00+00:00

complaintsentiment
mediumseverity
0.75relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

4 / 34 rows with source links

11.8% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

30 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
maximeschoeni unresolved
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 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.

Comments

1 shown
Jeff Starr 2022-07-16T23:59:00+00:00

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.