I have a WP project that has a lot of Admin customization for the client. I am generally stripping down the Admin with all but the necessary display and function that they need.
With WP 3.3 come WordPress New Feature Tool Tips. I haven't yet seen a good way to eliminate them. Looking at source code, they appear to be inserted with specific scripts (rather than generalized by title attribute or some other tag). For example:
<script type="text/javascript">
jQuery(document).ready( function($) {
var options = {"content":"<h3>Updated Media Uploader<\/h3><p>The single media icon now launches the uploader for all file types, and the new drag and drop interface makes uploading a breeze.<\/p>","position":{"edge":"left","align":"center"}};
if ( ! options )
return;
options = $.extend( options, {
close: function() {
$.post( ajaxurl, {
pointer: 'wp330_media_uploader',
action: 'dismiss-wp-pointer'
});
}
});
$('#content-add_media').pointer( options ).pointer('open');
});
</script>
Anyone know a good way to disable these insertions?