-
Steve @ trialsphere's profile was updated 9 years, 1 month ago
-
Slava Abakumov replied to the topic BuddyPress Newsletter relaunched in the forum Miscellaneous 9 years, 1 month ago
Several days ago sent a new issue!
BuddyPress Newsletter #26 – BP 2.9 news, new plugin, useful code snippets
https://www.getrevue.co/profile/bpmail/issues/26-bp-2-9-news-new-plugin-useful-code-snippets-49928
-
Helene Barker's profile was updated 9 years, 1 month ago
-
Kailee Ellis's profile was updated 9 years, 1 month ago
-
Fleur Fortier's profile was updated 9 years, 1 month ago
-
Henry Wright replied to the topic Buudypress not writing cookies in the forum How-to & Troubleshooting 9 years, 1 month ago
The site is on https, would that make a difference?
It shouldn’t because setcookie() is passed is_ssl() as the 6th argument.
-
Henry Wright replied to the topic How to sort by xprofile fields on membership list page in the forum How-to & Troubleshooting 9 years, 1 month ago
Check out this article
bp_before_has_members_parse_argsis the filter hook you’ll need.meta_keyandmeta_valuewill need to be used.Hope this helps!
-
Henry Wright replied to the topic register – log in /password email in the forum How-to & Troubleshooting 9 years, 1 month ago
Is WordPress or the plugin sending the email?
-
Henry Wright replied to the topic Buudypress not writing cookies in the forum How-to & Troubleshooting 9 years, 1 month ago
Are you sure
bp_core_add_message()is being executed? -
Ashim Adhikari replied to the topic All users marked as spammed in the forum How-to & Troubleshooting 9 years, 1 month ago
I disabled All Activity from buddypress and everythning changed back to normal
-
Henry Wright replied to the topic Resize member avatar error in the forum How-to & Troubleshooting 9 years, 1 month ago
-
Best Leather Recliner Chair's profile was updated 9 years, 1 month ago
-
Ashim Adhikari started the topic All users marked as spammed in the forum How-to & Troubleshooting 9 years, 1 month ago
All users in my website has been marked as spam,
Even new users are marked as spam automatically
how do i unspam them and bring back the datas
-
James W. Lane's profile was updated 9 years, 1 month ago
-
Best Leather Recliner Chair's profile was updated 9 years, 1 month ago
-
Henry Wright replied to the topic 403 error when trying to delete user field in the forum How-to & Troubleshooting 9 years, 1 month ago
A 403 response usually indicates the resource you requested is forbidden. Something like this could happen for various reasons. The first place to start is your .htaccess file; check there’s nothing crazy going on inside that. A basic WP .htaccess file with no customisation should look like this:
# BEGIN WordPress[Read more]
<IfModule… -
Henry Wright replied to the topic Upload avatar for member in the forum How-to & Troubleshooting 9 years, 1 month ago
An error occurred. Please try again later.
This is a pretty generic error message. Do you have anything in your error logs?
-
Henry Wright replied to the topic messages not sending in the forum How-to & Troubleshooting 9 years, 1 month ago
Do messages send with Wordfence disabled?
-
Anonymous started the topic Follow Up Emails With Users in the forum How-to & Troubleshooting 9 years, 1 month ago
Is there a way to have BuddyPress automatically follow up with a user who has created an account but hasn’t actually completed their profile?
Thanks,
Dave
-
Henry Wright replied to the topic Make ADMIN everyones FRIEND? in the forum How-to & Troubleshooting 9 years, 1 month ago
Try this:
add_action( 'user_register', function( $user_id ) {[Read more]
$admin_id = 1;
$friendship_status = BP_Friends_Friendship::check_is_friend( $user_id, $admin_id );
if ( 'not_friends' === $friendship_status ) {
if ( ! friends_add_friend( $user_id, $admin_id ) ) {
// There was a problem submitting the friend request. Do… - Load More