Issues I've seen with the plugin (commentor name on dashboard, IE issues)

2 views
Skip to first unread message

Rev. Voodoo

unread,
Sep 3, 2010, 2:10:44 PM9/3/10
to Janrain Developers
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!
Reply all
Reply to author
Forward
0 new messages