BP Groups Suggestions

Description

Adds “Suggested groups” functionality into BuddyPress groups.
By default, the plugin uses the user’s friends’s groups in order to suggest groups of the login user, but this can be extended through available filters.
It adds a “Suggested group” tab into the Groups Directory page, and also a widget “Suggested groups” is available.
The login user can hide groups from suggestion list, by pressing the “Remove group”, either through the widget,
the “Suggested groups” tab or by the group’s homepage. Also the login user can reset the hidden suggestion list.
The plugin uses various ‘filters’ so a developer can extend it, for example to include admins specified groups as suggested,
or to exclude groups from suggestion list.
Tested up to: BuddyPress 11.0.0

Special thanks goes to Brajesh Singh, whoes ‘BP Groups Suggest Widget’ (https://buddydev.com/plugins/bp-group-suggest/) gave the idea for extending it to a full plugin.

PLEASE: If you have any issues or it doesn’t work for you, please report in support forum. It doesn’t help anyone to mark “broken” without asking around. Thanks!

Notes

ideas.txt – contains ideas (brainstorming) which can improve the plugin. Feel free to build some of them.
License.txt – contains the licensing details for this component.

Screenshots

  • The "Suggested groups" tab on Groups Directory page.
  • Hide this Suggestion button on Group description (in case the group is on the suggested groups list).
  • Message on Group home page is the group, which is displayed in every visit after the group is removed from suggestion list.
  • Message on "Suggested groups" tab on Groups Directory page, in case none group is suggested
  • Widget settings

Installation

  1. Upload folder bp-group-suggestions to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

FAQ

Which are the available filters

  1. add_excluded_groups_suggestions: Allows developer to exclude groups from displaying as suggested.
    For example, see function my_groups_to_exclude on bp-suggest-functions.php
  2. get_possible_groups_suggestions_by_plugin: Allows developer to add groups into suggestion list
    For example, see function my_groups_suggestions on bp-suggest-functions.php
  3. add_users_for_group_search: Add users which groups should be used for group search. From example, see function friends_for_group_suggestion_ls on bp-suggest-functions.php
  4. bp_get_group_remove_suggestion_button: Allow developer to change the look and action of remove suggestion button
  5. ls_group_suggestions_description: Change the message on group_loop head. From example, see function friends_grsug_ls_description which is used inside friends_for_group_suggestion_ls on bp-suggest-functions.php

I think there should be more suggested groups

Only recenlty active groups are displayed.
Recently active means ‘last_activity’ date of group is < BP_GROUP_SUGGESTIONS_GROUPS_LAST_ACTIVITY_INTERVAL . ” ” . BP_GROUP_SUGGESTIONS_GROUPS_LAST_ACTIVITY_INTERVAL_TYPE. .
Default setting is groups active the last 4 weeks, which means BP_GROUP_SUGGESTIONS_GROUPS_LAST_ACTIVITY_INTERVAL = ‘4’ and
BP_GROUP_SUGGESTIONS_GROUPS_LAST_ACTIVITY_INTERVAL_TYPE=’WEEK’.
Both consts are defined at the beginning of loader.php file.

Can I extend/improve the plugin

Sure. Actually, I would be happy if someone gives a hand to make the best of the suggested groups idea. Various things (brainstorming) which need to be fixed are available on /ideas.txt

Reviews

شتنبر 3, 2016
Thanks @lenasterg for this useful plugin. PS The translation has a small bug but I found the solution in the support forum.
Read all 2 reviews

Contributors & Developers

“BP Groups Suggestions” is open source software. The following people have contributed to this plugin.

Contributors

“BP Groups Suggestions” has been translated into 1 locale. Thank you to the translators for their contributions.

Translate “BP Groups Suggestions” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

2.1.0

  • Migration for jQuery 1.9+

2.0.1

  • Fix a type

2.0

  • WordPress 6.1.1 and BuddyPress 11.0.0 compatible
  • PHP 8.1 compatibility
  • HTTPS compatibility

1.8

  • Debug fixes in widget

1.7

  • Compatibility fixes

1.6

  • Compatibility fixes

1.4

  • Added $args at suggestions_list() functions, in order to simplify the use as the_widget
  • Remove Hidden suggestions groups action if a user get deleted, a friendship is created or canceled.
  • Add example for “get_possible_groups_suggestions_by_plugin” filter
  • Fix positioning of bp_gs_ls_is_hidden_message
  • Change function name from ls_bp_unhide_button() to ls_bp_group_unhide_button()
  • Change function name from add_suggestions_search_to_query() to ls_group_suggestions_add_suggestions_search_to_query()

1.3

  • Minor fix for BP_GROUP_SUGGESTIONS_LS_DIR notice

1.2

  • Added two more option in widget: Show join group button and limit group’s title charachers in widget (See screenshot 5).
  • Fix Greek translation
  • Other minor fixes

1.1

  • Speed enhancement on the widget

1.0

Initial version