-
Henry Wright replied to the topic Warning message when posting status in the forum How-to & Troubleshooting 9 years, 1 month ago
You should post this question on the plugin’s support forum as this related to the buddypress-activity-privacy plugin.
-
Henry Wright replied to the topic Custom Profile Fields in the forum How-to & Troubleshooting 9 years, 1 month ago
Yes. Check out the WordPress Custom Fields article.
-
Henry Wright replied to the topic Exclude groups from get_total_group_count in the forum Showcase 9 years, 1 month ago
You can use the
bp_get_total_group_count_for_user
filter. For example:function my_func( $count, $user_id ) {
// Do something with $count, using $user_id if you wish.
return $count;
}
add_filter( 'bp_get_total_group_count_for_user', 'my_func', 10, 2 ); -
Henry Wright replied to the topic Re-Code BuddyPress to use Custom Post Types in the forum Requests & Feedback 9 years, 1 month ago
Can BuddyPress be re-coded to use custom post types?
Yes, but not very easily. An almost complete re-write of the project would be needed.
-
Henry Wright replied to the topic Script Error Issues in the forum How-to & Troubleshooting 9 years, 1 month ago
These all boil down to invalid arguments being supplied to various functions. The problem could be related to the same variable not being set properly but some investigation into your set-up would be needed.
-
Henry Wright replied to the topic Users not able to view the members page in the forum How-to & Troubleshooting 9 years, 1 month ago
/members/ should be a perfectly acceptable slug to use. There must be a conflict somewhere. Likely some custom code or a plugin.
-
Henry Wright replied to the topic Users not able to view the members page in the forum How-to & Troubleshooting 9 years, 1 month ago
Do you have any plugins activated aside from BuddyPress?
-
Henry Wright replied to the topic business page in the forum Third Party Plugins 9 years, 1 month ago
If you can think of business pages as “groups” then BuddyPress comes with that functionality. You just need to enable the Groups component and your members will be able to create and invite more members to join the group.
-
Henry Wright replied to the topic will the buddypress be compatible with php7? in the forum How-to & Troubleshooting 9 years, 1 month ago
It looks as though BuddyPress has got PHP 7 in the bag 🙂
-
Henry Wright replied to the topic will the buddypress be compatible with php7? in the forum How-to & Troubleshooting 9 years, 1 month ago
Good question! This is likely to being looked at by the core team.
See this post which describes what is being done by the WordPress core team: https://make.wordpress.org/core/2015/09/10/wordpress-and-php7/
My guess is the BuddyPress core team are doing something like that. Maybe @djpaul can add something here?
-
Henry Wright replied to the topic I want accept and reject button functionality on notification section in the forum Installing BuddyPress 9 years, 1 month ago
i am missing 22and this is friend id. so please solve my problem.
Are you using
bp_friend_accept_request_link()
outside of the loop? That might be the reason you’re not getting the friendship ID.Inside
bp_friend_accept_request_link()
,friends_get_friendship_id()
is used to get the ID. This function accepts 2 arguments, the first is the ID of a…[Read more] -
Henry Wright replied to the topic List or grid format for members or groups directory in the forum Ideas 9 years, 1 month ago
This could quite easily be theme functionality rather than something that is added to core.
-
Henry Wright replied to the topic Best Theme for Busy Community? in the forum Creating & Extending 9 years, 1 month ago
Hey @wecreatehype
Feel free to show off your community in the Your BuddyPress forum. It’ll be great to see a live version of Boss “in the wild”.
-
Henry Wright replied to the topic BP vs Theme conflict, page blank in the forum How-to & Troubleshooting 9 years, 2 months ago
500 is a very general error. Try the following:
Clear your browser cache
Delete cookies
Remove all custom code from functions.php or bp-custom.php
Activate the TwentyFifteen theme
Disable all plugins
Check your .htaccess file for errorsThe problem may also result from a file or folder permissions error.
In truth, 500 errors are…[Read more]
-
Henry Wright replied to the topic Do I need Xprofiles, can't i just use User Meta in the forum How-to & Troubleshooting 9 years, 2 months ago
You can disable the xProfile component and there shouldn’t be any ill effects associated with doing that. You obviously won’t get that functionality but of course you’re free to use the WordPress-based usermeta to store profile data instead.
-
Henry Wright replied to the topic Contact form on profile in the forum Third Party Plugins 9 years, 2 months ago
You could try the BuddyPress Ideas forum:
-
Henry Wright replied to the topic Exclude groups from get_total_group_count in the forum Showcase 9 years, 2 months ago
You might also want to exclude hidden groups, just as the default group count function does. For example:
status != 'hidden'
-
Henry Wright replied to the topic Contact form on profile in the forum Third Party Plugins 9 years, 2 months ago
Cool idea. I haven’t seen a plugin which can do this myself. Did you check the Plugin Directory?
-
Henry Wright replied to the topic Exclude groups from get_total_group_count in the forum Showcase 9 years, 2 months ago
Considering you need to use a custom where clause to get your data, you should do what @shanebp suggests here:
Just make it a custom function that you call wherever you want.
My tweak only makes sense when a simple adjustment to
$count
is needed. -
Henry Wright's profile was updated 9 years, 2 months ago
- Load More
@henrywright
Active 8 months, 2 weeks ago