-
@mercime updated the Activity → Favorites page, on the BuddyPress Codex 10 years, 5 months ago
This is a list of all the items (posts, comments, friendships, etc.) you have “favorited” in your Groups’ Activity Streams, the Sitewide Activity Stream, or even your own Personal Activity Stream.
Filter to […]

-
@mercime updated the Activity → Mentions page, on the BuddyPress Codex 10 years, 5 months ago
This page shows all the @ mentions you received throughout the site.
Filter to Show @mentions in:
Everything (default)
Updates
New Sites (if on Multisite installation)
Posts
Comments
Friendships (if […]
-
@mercime updated the Activity → Personal page, on the BuddyPress Codex 10 years, 5 months ago
This page is the record of all your activities throughout the site listed in chronological order. If you’re logged in, there’s a status update box before the activity stream where you can post what’s on your […]

-
@mercime updated the Registration page, on the BuddyPress Codex 10 years, 5 months ago
1. Click on the “Register” link. Some sites use “Join Us”, “Sign Up”, or other terminology.
2. Fill in the forms. Some sites allow you to create your own blog. You can fill up the form to create one now, or […]

-
Henry Wright replied to the topic How to create pages in buddypress like facebook?? in the forum Creating & Extending 10 years, 5 months ago
Does How to make my site like Facebook help?
-
Henry Wright replied to the topic Spammers let in/Real people kept out. in the forum How-to & Troubleshooting 10 years, 5 months ago
If I disable email confirmation then it opens the site to even more spammers.
Personally, I’d never do that because as you say it opens the door to spoof emails, and therefore much more spam.
I’d reach out to your users and try to find out what is causing the emails to go into their spam folders. For example, do they have custom spam filters set…[Read more]
-
Henry Wright replied to the topic Spammers let in/Real people kept out. in the forum How-to & Troubleshooting 10 years, 5 months ago
You could activate some kind of registration honeypot to keep the spam bots out. This technique has worked well for me in the past.
Example: https://en-gb.wordpress.org/plugins/registration-honeypot/
Regarding the confirmation email problem, this seems to be a common problem and one that isn’t easily solved. Many things can result in email going…[Read more]
-
webbuild replied to the topic Disable comments in activity in the forum How-to & Troubleshooting 10 years, 5 months ago
Hi
bp-custom.php put only this code?
i putt in wp-content-plugin ?
i put the code in this route but not work -
Henry Wright replied to the topic How to back previous page after login in the forum How-to & Troubleshooting 10 years, 5 months ago
Try using Theme My Login.
-
Henry Wright replied to the topic Change @name from username in the forum How-to & Troubleshooting 10 years, 5 months ago
The username will be used in the profile URL so there’s no way of hiding it fully.
-
webbuild started the topic Disable comments in activity in the forum How-to & Troubleshooting 10 years, 5 months ago
Hello i have buddypress 2.4.3 and i want to disable comments in activity . I add this code in functions.php of my theme
add_filter(‘bp_activity_can_comment’,’__return_false’);but the comments still exist.
How can i disable the comments and make the button invisible from site-wide activity ? -
dainismichel replied to the topic Change @name from username in the forum How-to & Troubleshooting 10 years, 5 months ago
i’m tracking down the same info, plz keep me posted.
i will cruise through the DB to see what i can find…
–dainis
-
Henry Wright replied to the topic Some members can't access their profile, weird redirect in the forum How-to & Troubleshooting 10 years, 5 months ago
Try disabling all plugins to see if the problem still happens.
-
Henry Wright replied to the topic bp-custom.php bp nav in the forum How-to & Troubleshooting 10 years, 5 months ago
Maybe the
999priority is too late? Try setting it to something like8. This is guesswork so forgive me. -
Henry Wright replied to the topic Fatal error: Allowed memory size … exhausted … wp-db.php in the forum How-to & Troubleshooting 10 years, 5 months ago
You should try to find out what’s causing such a huge memory usage. Start off with the default Twenty Fifteen theme and no plugins activated. Then activate your plugins one-by-one, to find the culprit.
-
Henry Wright replied to the topic Error – BP_MESSAGES_AUTOCOMPLETE_ALL in the forum How-to & Troubleshooting 10 years, 5 months ago
I changed the source code
It’s never a good idea to change the plugin’s source. You should revert that change. Any custom code snippets you might have should go into either your theme’s functions.php file or a bp-custom.php file (if you have one).
-
Henry Wright replied to the topic Trouble with custom activity function in the forum Creating & Extending 10 years, 5 months ago
You could use a control statement inside
my_func()? For ex:if ( 'something' === 'something' ) {
// Do something better than this...
$ret['blah'] = 'blah';
}
The exact condition you use will depend on what you’re trying to do.
-
Henry Wright replied to the topic Trouble with custom activity function in the forum Creating & Extending 10 years, 5 months ago
Ah OK, cool. In that case you may also be interested to hear about
bp_parse_args(). I think it’s a better way of doing what you want. This approach will also handle the loop pagination for you. For example:function my_func( $ret ) {[Read more]
// Your custom stuff here.
return $ret;
}
add_filter( 'bp_after_has_activities_parse_args', 'my_func'… -
Henry Wright replied to the topic Trouble with custom activity function in the forum Creating & Extending 10 years, 5 months ago
I’m wondering why you’re writing a custom query to get user meta? That’s what the
get_user_meta()function is for.Ref: https://codex.wordpress.org/Function_Reference/get_user_meta
-
Henry Wright replied to the topic Trouble with custom activity function in the forum Creating & Extending 10 years, 5 months ago
sw_partner_activityisn’t a BuddyPress hook. Are you using a plugin? - Load More