-
Henry Wright replied to the topic How to change options for user delete the account? in the forum How-to & Troubleshooting 10 years ago
Do you mean like a deactivate option? That isn’t available right now in BuddyPress.
-
Henry Wright replied to the topic Buddypress on Multisite in the forum Ideas 10 years ago
I think this should be a question for the core team. You should post it on Trac:
-
Henry Wright replied to the topic Mobile members page in the forum Showcase 10 years ago
Yes, try letting your theme’s author know via their support channel. Hopefully they can release a fix.
-
Andrew Tegenkamp replied to the topic Private Member? in the forum Creating & Extending 10 years ago
Thanks, I got it fixed with this code (xprofile field id 2 = Yes) if it helps anyone else out.
add_filter('bp_before_has_members_parse_args', 'get_custom_user_ids');[Read more]
add_filter('bp_get_total_member_count', 'custom_members_count');
function get_custom_user_ids( $retval ) {
global $wpdb;
$custom_ids = $wpdb->get_col("SELECT user_id FROM… -
Henry Wright replied to the topic [Resolved] How to Hide Admin accounts 2016? in the forum How-to & Troubleshooting 10 years ago
Check out this article:
-
Andrew Tegenkamp started the topic Private Member? in the forum Creating & Extending 10 years ago
I was using the code example at https://codex.buddypress.org/developer/bp_user_query/#code-examples and found it works great for removing users from the Member’s Directory list based on an xprofile field.
However, when I change the order using the default Order By dropdown it seems the user that is removed comes back. I’m using the 2014 theme and…[Read more]
-
Henry Wright replied to the topic ALL users not appearing in BP members dir in the forum How-to & Troubleshooting 10 years ago
Users are set to active on first log in, and only then appear in the directory.
-
Henry Wright replied to the topic How to change item text from main nav in the forum How-to & Troubleshooting 10 years ago
There are a few articles that could be useful to you. Check out:
-
Henry Wright replied to the topic Visual editor not working in the forum How-to & Troubleshooting 10 years ago
Hi @andy60rm
If you can nail down the culprit, it’s always a good idea to open a new topic on the plugin’s support forum. Then hopefully a fix can be released by the plugin author 🙂
-
Henry Wright's profile was updated 10 years ago
-
Henry Wright replied to the topic How to make activity Stream not showing profile or profile pictures updates? in the forum How-to & Troubleshooting 10 years ago
Don’t forget activity comments are different to WordPress post comments so you’ll need to find the right action for those to work.
-
Glenn started the topic ALL users not appearing in BP members dir in the forum How-to & Troubleshooting 10 years ago
I installed BP well after having installed WP. for some reason when trying to display my users in the members directory, only 8 are appearing (of 27 or so). i then added them all to a Group, and get the same results. i’ve searched high and low for the differences in these two groups of users and can find nothing.
could anyone PLEASE find it…[Read more]
-
Henry Wright replied to the topic How to make activity Stream not showing profile or profile pictures updates? in the forum How-to & Troubleshooting 10 years ago
I added it at the end of my theme’s functions.php file. I’m using Twenty Fifteen to test.
-
Henry Wright replied to the topic How to make activity Stream not showing profile or profile pictures updates? in the forum How-to & Troubleshooting 10 years ago
That’s strange, I just tested and it works fine for me?
-
vaughancavca replied to the topic Removing options for private and hidden groups in the forum How-to & Troubleshooting 10 years ago
My theme doesn’t seem to have any BP files, although I’ve found another create.php file in the themefolder > blogs folder, it’s completely different to the one I’ve been working with. Could this be a conflict with the BP one?
-
Henry Wright replied to the topic not receiving account confirmation email in the forum Installing BuddyPress 10 years ago
Whilst waiting for a response from your host, try checking your spam folder to be sure nothing is dropping in that.
-
Henry Wright replied to the topic How to make activity Stream not showing profile or profile pictures updates? in the forum How-to & Troubleshooting 10 years ago
Sorry for the delay in getting back to you. So it looks like we will need to add our actions instead of removing them. Here’s where the fun part begins. You’ll need to find a list of all the action types you want in your stream and add them to the following snippet:
add_filter( 'bp_after_has_activities_parse_args', function( $retval ) {…[Read more] -
Henry Wright replied to the topic BP project info in the forum Requests & Feedback 10 years ago
I doubt there’s a tutorial on this particular setup, but any specific questions you have feel free to post here and we’ll do our best to help you out 🙂
-
Henry Wright replied to the topic Birthday Notifications in the forum How-to & Troubleshooting 10 years ago
The page you linked to describes how to add a web notification. The example on that page hooks to the
bp_activity_sent_mention_emailaction which means every timebp_activity_sent_mention_emailis executed, a web notification will be sent. In your case, you’d still usebp_notifications_add_notification()to send the notification but you will want…[Read more] -
Henry Wright replied to the topic Is it possible to create a corporate community using BuddyPress? in the forum Miscellaneous 10 years ago
If you’re already using WordPress then BuddyPress might be a good option because of how tightly integrated the two are. BuddyPress is just a plugin so to get started you simply have to activate it from your WordPress dashboard.
My advice would be to set up a test install and give BuddyPress a try. You’ll then get a feel for if it will meet your…[Read more]
- Load More