Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Dev looking for feature requests for next BP-Group-Control version

Hey,

we use your plugin on our (not yet in production) jmonkeyengine.org site and I must say it rocks.

We intend to use the system so users can have a “tag” that shows where they belong and what they do. In our current forums we have tags like “moderator”, “manager”, “developer”, “advocate” etc. We also want to use the buddypress forums so I added the tag to the forum poster names as well like this:


add_filter("bp_get_the_topic_post_poster_name","jme_get_the_topic_post_poster_name",0);
function jme_get_the_topic_post_poster_name( $old_string ) {
global $topic_template;

if ( !function_exists("bpgc_has_identifying") ) {
return $old_string;
}

$identifying = bpgc_has_identifying($topic_template->post->poster_id);
if ( $identifying ) {
$old_string = $old_string." (".$identifying->name.")";
}
return $old_string;
}

Maybe its a useful feature for others as well.

Also, maybe you could add some more restriction options like forum creation etc. Its something we currently struggle with because we dont want to allow every group moderator to be able to create a forum for the site.

Any other ideas I get, I will post them here, thanks for this plugin :)

Cheers,
Normen

Skip to toolbar