• Resolved maarteno

    (@maarteno)


    Hi,

    I’m using WP User Avatar alongside S2Member and I found a conflict in displaying custom column in the Admin -> Users list. If WP User Avatar is enabled it will not show any of the S2Member columns with user data (just the headings with no values). Commenting out line 343 to 346 in wp-user-avatar.php resolved that problem:

    if((bool) $show_avatars == 0 && is_admin()){
        add_filter('manage_users_columns', array($this, 'wpua_add_column'), 10, 1);
        add_filter('manage_users_custom_column', array($this, 'wpua_show_column'), 10, 3);
    }

    Any idea what causes the conflict? I’m using add_filter(‘manage_users_columns’ elsewhere with no problems.

    Best
    M.

    http://wordpress.org/plugins/wp-user-avatar/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Do you have “Show Avatars” checked? This will put the avatars to the left of the username and won’t interfere with the other user columns.

    I’ve made a change in version 1.6.2 that should solve this problem (no need to use “Show Avatars”). Please update and let me know if that worked for you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘user avatar Admin Users Columns conflict’ is closed to new replies.