BP Activity Share
BP Activity Share
Description
BuddyPress plugin must be activated for this plugin.
BP Activity Share plugin is useful for sharing an activity locally like we are sharing any post in FaceBook:
1. Share activity site-wide
2. Share activity with custom text
3. Share activity into any group in which user is a member
If you really like this plugin, don’t forget to rate -> https://wordpress.org/support/plugin/bp-activity-share/reviews#new-topic-0
Installation
From your WordPress dashboard
- Visit ‘Plugins > Add New’
- Search for ‘BP Activity Share’
- Activate BP Activity Share from your Plugins page.
From WordPress.org
- Download BP Activity Share.
- Upload the ‘bp-activity-share.zip’ directory to your ‘/wp-content/plugins/’ directory, using your favorite method (ftp, sftp, scp, etc…)
- Activate BP Activity Share from your Plugins page.
Faq
Installation Instructions
From your WordPress dashboard
- Visit ‘Plugins > Add New’
- Search for ‘BP Activity Share’
- Activate BP Activity Share from your Plugins page.
From WordPress.org
- Download BP Activity Share.
- Upload the ‘bp-activity-share.zip’ directory to your ‘/wp-content/plugins/’ directory, using your favorite method (ftp, sftp, scp, etc…)
- Activate BP Activity Share from your Plugins page.
Can I use my existing WordPress theme?
Yes! BP Activity Share works out-of-the-box with nearly every BuddyPress supported theme.
Reviews
Great Feature. But Outdated Plugin. Not Working. Needs a Fork.
By Bigue Nique (biguenique) on April 3, 2023
This plugin doesn't work anymore.
This is an essential feature, and it looks like it was well made, but this plugin is 6 years-old and unfortunately outdated. Since the developer is not available, a fork would be needed (there's none yet on GitHub) to fix current issues. Any volunteers out there?
I only tried it out with BuddyBoss Platform, and couldn't make it work. Here's what I observed:
- The main problem is that the reshare form leads to an URL that yields a 404 (Page Not Found). I suspect that it has to do with the way BuddyPress routes internal URLs (if I remember well, the routing component underwent extensive refactor in the last few updates of BuddyPress, that might explain why it stopped working at some point).
- With BuddyBoss Platform on a multisite installation, the settings are only available network-wide (in network admin > BuddyBoss > Integrations > BuddyPress) and only take effect if the plugin is activated network-wide. Then the "Share" button (and form) effectively shows up on selected activity types.
Didn't work for me either
By jcfromkc on October 30, 2019
Doesn't work, info supplied at support forum - no replies, waste of time
By Kir 2012 on September 4, 2019
Great plugin
By ositive on August 19, 2017
activity filter option
By Anonymous User 15484660 (anonymized_15484660) on August 1, 2017
function bpfr_activity_types( $retval ) {
// comment line to disable optiopns
$retval['action'] = array(
'activity_comment',
'activity_update',
'created_group',
'friendship_created',
'joined_group',
'last_activity',
//'new_avatar',
'new_blog_comment',
'new_blog_post',
//'new_member',
'updated_profile'
);
return $retval;
}
add_filter( 'bp_after_has_activities_parse_args', 'bpfr_activity_types' );
but all shared activities disappears, to show shared activities it's necessary to add 'bp_activity_share' to the function, it's the plugin option.
like that
function bpfr_activity_types( $retval ) {
// comment line to disable optiopns
$retval['action'] = array(
'activity_comment',
'activity_update',
'created_group',
'friendship_created',
'joined_group',
'last_activity',
//'new_avatar',
'new_blog_comment',
'new_blog_post',
//'new_member',
'updated_profile'
'bp_activity_share'
);
return $retval;
}
add_filter( 'bp_after_has_activities_parse_args', 'bpfr_activity_types' );
About time.
By RJB (rbeaujard) on July 18, 2017
Great plugin! Mediapress Support?
By wpcarl on May 10, 2017
Awesome and easily share.
By vicky0007 on December 13, 2016
Cool
By blondelovic on September 25, 2016
Changelog
1.5.0 – August 13, 2017
- New – Register BP Activity Share as a BuddyPress action
- New – Shared Updates in activity filter
- Misc – Strict checking for BuddyPress plugin
1.4.0 – July 01, 2017
- New – Add settings link in the plugins list
- New – Share an activity with custom text
1.3.0 – January 19, 2017
- New – Admin option to select Activity Types
- New – rtMedia support
1.2.0 – December 29, 2016
-
Fix – PHP Notice when sharing shared activity after deleting parent activity
-
New – Decrease share count when deleting shared activity
1.1.0 – November 15, 2016
- New – Share activity to the BuddyPress groups
1.0.1 – October 19, 2016
- Fix – sharing an activity which is already shared without page refresh
1.0.0 – September 24, 2016
- Initial Release
- Share any existing activity locally



