Does the dev version fix the issue people are having with IE?
The last (official) version of the plugin was fine. Now it no longer
works for IE. There's a few threads going on WP about it
Also, here's my thread on WP
http://wordpress.org/support/topic/missing-from-content-when-viewing-recent-comments-on-dashboard?replies=15
The plugin strips the commenters name from the recent comments widget
on the dashboard
the filter is returning nothing when it's the admin
function rpx_get_comment_author_filter($a) {
if (strpos($_SERVER['REQUEST_URI'], 'wp-admin')) {
return;
}
...
Works better when the data is simply returned
function rpx_get_comment_author_filter($a) {
if ( is_admin() ) {
return $a;
}
...
Thanks for the time and input!