Replies
- Brajesh Singh on September 24, 2015 at 7:11 pm in reply to: "Rate Limit User Activity" Breaks "Activity as Wire" and Notifications #570
Hi Steve,
I have updated the Rate Limit User activity plugin and now it works fine with BuddyPress Activity AS wire plugin.If you are using BuddyDev dashboard plugin, you can directly update from your plugins page.
Otherwise, please download from herehttps://buddydev.com/plugins/bp-rate-limit-user-activity/
and update.
Please do let me know if that works for you or not?
- Brajesh Singh on September 24, 2015 at 2:05 pm in reply to: "Rate Limit User Activity" Breaks "Activity as Wire" and Notifications #567
Hi Steve,
Sorry about the delay.I tested these two plugins together and here is what i found.
When rate limiter plugin is active, the BuddyPress Activity as wire plugin stops working. Other than that, public notifications etc was working fine for me.
Is that the case for you too? I am working on a compatibility fix right now and will have another update for you soon.
- Brajesh Singh on September 24, 2015 at 1:46 pm in reply to: [Resolved] Open question: member profile vs account #566
You are most welcome 🙂
- Brajesh Singh on September 24, 2015 at 1:23 pm in reply to: [Resolved] Profile Privacy causing Theme crash WordPress 4.2.4 #564
Hi Leigh,
At the moment please put the file in bp-profile-visibility/languages directory in plugin. This is something remaining from our past code. We are updating all our plugins to use the WordPress languages dir as fallback and in future.We will post the changelog when the next version comes.
Sorry for the trouble. Please make sure to keep a backup copy of the languages file safe for future use. Hi,
Welcome to BuddyDev support forum.1. Do you need ids or just the count? If you need just the count here is a function with example to do that
function buddydev_get_member_types_count( ) { $member_types = get_terms( 'bp_member_type', array( 'fields' => 'all', 'hide_empty' => false )); if( ! $member_types ) { return array(); } $counts = array(); foreach ( $member_types as $member_type ) { $counts[ $member_type->slug] = $member_type->count; } return $counts; }
You can put the above code in your bp-custom.php or theme’s functions.php.
And use the following code to show the counts
//example usage in your file $counts = buddydev_get_member_types_count(); echo "Total students:" . $counts['student'];
Please do note, if you are on multisite, this code will only work on main site.
About settings the default member type, yes.
add_action( 'bp_core_activated_user', 'buddydev_set_default_member_type', 1 );//high priority function buddydev_set_default_member_type( $user_id ) { bp_set_member_type( $user_id, 'student' ); }
Please put that code in your bp-custom.php and that should take care of the default assignment.
Hope that helps.
- Brajesh Singh on September 24, 2015 at 7:43 am in reply to: How to delete Primary site of multinetwork, not original prime site's network #561
Hi R.O.
Are you refrerring to the WP Multi Network plugin by John James Jacoby? - Brajesh Singh on September 23, 2015 at 9:32 pm in reply to: BP Xprofile Member Type Field: feedback and radio buttons #558
Hi Maelga,
Thank you for asking.1. My plugin stores the member type and not the member type label. Member type label have display significance, but under the hood it is the actual member type that matters. The plugin should handle the display properly in most of the case.
If you want to display in in standard way, you can get the registered member type object and then fetch the singular/plural labels.
About the radio, are you referring to the member type plugin? I am sorry but I haven’t provided a way for that, you will need to edit that plugin and replace select/option with input type radio. That will do it for now. In future, i will be happy to add an option to show it as radio or select box.
- Brajesh Singh on September 23, 2015 at 9:27 pm in reply to: [Resolved] Open question: member profile vs account #557
Hi Maelga,
Thank you for asking. It is a little tricky and I was able to move all the profile editing/avatar uploading under account settings section for one of the members earlier( Steve had asked me about it).Here is link to that code
That code should get you started I hope 🙂
- Brajesh Singh on September 23, 2015 at 8:39 pm in reply to: [Resolved] BuddyPress Activity Shortcode Load More #555
Sorry about that.
Sometimes, the free support may not get attention due to other priority work. I hope you understand that. I will look into it again today. Hi,
Can you please upgrade to 1.0.1 and see if that works. i noticed that your theme is using BuddyPress theme compat and that might be the reason. Have upgraded the plugin on wp.org repo. Please upgrade and let me know if that fixes or not?