Does anybody know what happened to the section in Wordpress went to: Settings > Writing > Formating: Convert emoticons like :-) and :-P to graphics on display I remember it used to be there regardless of whatever theme I was using. I can't find an answer on any forums either. Is there a script or something i can paste into functions.php to make it show up again?
Just updated my local and live installs for a side project to 4.2 in order to take advantage of the newly added Emoji features. Emoji are working just fine on my local machine, but they seem to not be working as comments on the live version. Local emoji in post title - working emoji in post content - working emoji in comments - working Live emoji in post title - working emoji in post content - working emoji in comments …
Is there any way to disable emoji on specific pages? function disable_emoji_feature() { // Prevent Emoji from loading on the front-end remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'wp_print_styles', 'print_emoji_styles' ); // Remove from admin area also remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'admin_print_styles', 'print_emoji_styles' ); // Remove from RSS feeds also remove_filter( 'the_content_feed', 'wp_staticize_emoji'); remove_filter( 'comment_text_rss', 'wp_staticize_emoji'); // Remove from Embeds remove_filter( 'embed_head', 'print_emoji_detection_script' ); // Remove from emails remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' ); // Disable from TinyMCE editor. Currently disabled in …
I'm developing a site which leans heavily on emoji for visual interest. The twemoji emoji set that is loaded by wp-emoji.js is really good visually. And importantly I want all users to get the same visual experience. In this case, even at the expense of performance. Some systems emoji sets are really undesirable. As far as I can tell, wp-emoji.js ONLY loads twemoji.js when the system doesn't have its own emoji set, or when the emoji set doesn't contain the …
Wordpress displays emoji unicode symbols using an icon set like this one http://emojione.com/#gallery but I don't want this version. Emoji looks so different in Wordpress. Is it possible to use another icon pack that looks more native, like the the emojipedia link: https://emojipedia.org/people/
So WP 4.2 introduced emojis (smileys) that basically adds JS and other junk all over your pages. Something some people may find shocking. How does one completely erase all instances of this?
In my page content, I have the following: <li><span class="tick">✔</span> Fully qualified and insured technicians, with over a decade of experience</li> On the frontend, WordPress changes the ✔ to: <img draggable="false" role="img" class="emoji" alt="✔" src="https://s.w.org/images/core/emoji/13.0.1/svg/2714.svg"> I can't change the colour of this SVG image, it is black, and we need it white. How do I prevent the conversion of emojis to SVG? EDIT I've found this answer which says to use: add_filter( 'emoji_svg_url', '__return_false' ); All that does is break …
We have post titles that contain emojis. While creating a post and saving it as a draft, the URL slug generated by WordPress doesn't add the [emoji] from the title. However, when the post is published, WordPress add the [emoji] from the post title into the posts' URL slug. Is there any way I can disable WordPress from changing the URL slug when a post is published? Or any way to disable emoji support in URLs?
How can check if the emoji is disabled on the site or not? I have searched for an official function but I haven't found anything officially, We are creating a theme and will publish it soon and need to check if the customer has disabled the emojis by adding any function or by any another way.
I created custom theme in Wordpress and wanted to apply it to my site. Apparently, in the header section, besides the elements, weird text about emoji appeared. I found out that I have to turn out the emoji using "Disable Emojis" plugin or put some code right into functions.php. I have used this code and it worked: function disable_emojis() { remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'wp_print_styles', 'print_emoji_styles' ); remove_action( 'admin_print_styles', 'print_emoji_styles' ); remove_filter( 'the_content_feed', 'wp_staticize_emoji' …
I have a private plugin that exports all posts without 'themeing', so the output is just html of the content (with the post subject as H1, and date/time as H2). If a post contains an emoji, it is displayed properly on a themed page. But if I save the HTML output to a file, the emoji comes out something like &eth;&#159;&#153;&#129; These are UniCode character (I think), and I need the generated HTML page to show the emoji as a …
Couldn't find anything on the topic. I guess something could be done with the 'wp_unique_post_slug' filter but how would I go about just removing the emojis from the slug? I've tried all kinds of things with this filter but can't seem to remove only the emoji part whilst retaining the functionality of WP numbering the slugs ID-titlecount (or whatever it is) in case there's nothing left after non unicodes and emojis are stripped. Has anyone have happened to work with …
My emoticons like :-) and :P not converted to images after trying to check the user_smiles option in writing settings page I found that the checkbox option does not exist on the page. https://i.stack.imgur.com/gouaX.jpg NOTE: I found that the option exists on the database and its value is 1. NOTE: I deleting everything and install the WordPress again without changing any settings or themes or plugins and the problem not fixed.
I just discovered that all emojis on my site were replaced by the ? char. I saw this on comments and posts. Tables like wp_comments or wp_posts had a utf8mb4_unicode_ci collation before and now, so that is not the issue. I'm thinking on WP core or a plugin update causing this. Also, I faced an odd issue where some post updates I made disappeared, so it might be possible that my shared hosting has been messing around with my DB. …
Can I change WordPress emoji src from http://s.w.org/ to my site? I just want to replace all emoji links from http://s.w.org/ to my site URL and I will use my own emoji images.
I am using Wordpress 4.7.3 with the built in Emojii support. We have recently moved to MariaDB 10.0.30, but the original wp-config indicates define('DB_CHARSET', 'utf8). I have noticed that I cannot use emojis and, for example, if I try to include an emoji as category and have enabled the debug mode, I am returned with this: WordPress database error: [Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8mb4_unicode_ci,COERCIBLE) for operation '='] SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS …
I need to modify the URL for /wp-includes/js/wp-embed.min.js?ver=4.6.1 and I have found the following entry that employs the notion of filters: https://wordpress.org/support/topic/how-to-change-default-url-for-new-script-wp-emoji-releaseminjs/ I have included the following code in my functions.php: function filter_my_script_location( $script_url, $script_name ) { if ( 'concatemojoi' == $script_name ) { $script_url = 'http://mynewdomain/wp-emoji-release.min.js'; } return $script_url; } add_filter( 'script_loader_src', 'filter_my_script_location', 10, 2 ); This does not change the Default URL to the one I wanted, is that the correct way to use filters in this case? …
Currently Wordpress displays emoji unicode symbols using an icon set like this one http://emojione.com/#gallery but to be honest I don't like how they look so I wonder if it's possible to use another icon pack that looks more native, like the one on this picture: https://en.support.wordpress.com/emoji/#emoji Emoji icons URL now looks like https://s.w.org/images/core/emoji/2/svg/1f61a.svg
When you enable emojis, Wordpress includes code which converts the chars to the PNGs which it pulls from a CDN. We would like to replace those with our own images. According to formatting.php the function is here. How do we override the emoj_url so that we are pulling the PNGs from a folder of our choosing? Can the function being replaced (ie. is it pluggable?) I tried remove_all_filters() and apply_filter() with our own function, but it doesn't work.