Title: Incompatible with Groups plugin
Last modified: August 20, 2016

---

# Incompatible with Groups plugin

 *  Resolved [Razorfrog Web Design](https://wordpress.org/support/users/razorfrog/)
 * (@razorfrog)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/incompatible-with-groups-plugin/)
 * No data is displayed in the Registered column when the [Groups](http://wordpress.org/extend/plugins/groups/)
   plugin is installed.
 * [http://wordpress.org/extend/plugins/recently-registered/](http://wordpress.org/extend/plugins/recently-registered/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [13 years, 4 months ago](https://wordpress.org/support/topic/incompatible-with-groups-plugin/#post-3369959)
 * Groups is ‘doing it wrong’
 * Edit groups/lib/admin/class-groups-admin-users.php
 * On line 237 there’s a function that needs to be this:
 *     ```
       public static function manage_users_custom_column( $foo, $column_name, $user_id ) {
       		$output = '';
       		if ( self::GROUPS == $column_name ) {
       				$groups_user = new Groups_User( $user_id );
       				$groups = $groups_user->groups;
       				if ( count( $groups ) > 0 ) {
       					$output .= '<ul>';
       					foreach( $groups as $group ) {
       						$output .= '<li>';
       						$output .= wp_filter_nohtml_kses( $group->name );
       						$output .= '</li>';
       					}
       					$output .= '</ul>';
       				}
       				return $output;
       		}
   
       		return $foo;
       	}
       ```
   
 * Basically they’re forcing $output to show no matter what, which whomps other 
   plugins (like mine). By changing it so $output ONLY gets called on their column,
   and the $foo (i.e. whatever else it was, like in my column) is showed correctly.
   I tested the change and it works.
 * I’ll push a change to mine that makes my plugin (which does it RIGHT) to run 
   first, so that the other plugin stops messing with me.
 *  Thread Starter [Razorfrog Web Design](https://wordpress.org/support/users/razorfrog/)
 * (@razorfrog)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/incompatible-with-groups-plugin/#post-3369973)
 * Thanks Mika, you rock! Made the change and we’re back in business. Just sent 
   you a beer via your wepay link 🙂
 *  Thread Starter [Razorfrog Web Design](https://wordpress.org/support/users/razorfrog/)
 * (@razorfrog)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/incompatible-with-groups-plugin/#post-3369974)
 * Resolved.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Incompatible with Groups plugin’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/recently-registered_74635e.svg)
 * [Recently Registered](https://wordpress.org/plugins/recently-registered/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/recently-registered/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/recently-registered/)
 * [Active Topics](https://wordpress.org/support/plugin/recently-registered/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/recently-registered/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/recently-registered/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Razorfrog Web Design](https://wordpress.org/support/users/razorfrog/)
 * Last activity: [13 years, 4 months ago](https://wordpress.org/support/topic/incompatible-with-groups-plugin/#post-3369974)
 * Status: resolved