-
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? -
Henry Wright replied to the topic Resize member avatar error in the forum How-to & Troubleshooting 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?
-
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… -
Henry Wright replied to the topic Accept / Reject Friend Request NOT WORKING 🙁 in the forum How-to & Troubleshooting 9 years, 1 month ago
Being a premium theme the best thing to do is contact their support team. Unfortunately, because the SocialChef theme’s code is private there’s not much we can do here to help.
-
Henry Wright's profile was updated 9 years, 1 month ago
-
Henry Wright wrote a new post on the site BuddyPress.org 9 years, 1 month ago
Contributor Day is a big part of WordCamp London. This year it was held on Friday 17th March at London Metropolitan University. 100 contributors descended on the venue each aiming to make WordPress better in some […]

-
Henry Wright's profile was updated 9 years, 1 month ago
-
Henry Wright replied to the topic hide members list on opening directory in the forum How-to & Troubleshooting 9 years, 1 month ago
In that case there’s a few options. You could try to find a plugin. If a plugin isn’t available you could suggest the feature. Alternatively you could hire a developer.
https://en-gb.wordpress.org/plugins/
https://wordpress.org/ideas/Hope this helps!
-
Henry Wright replied to the topic messages not sending in the forum How-to & Troubleshooting 9 years, 1 month ago
Have you changed theme over the past week or installed new plugins?
-
Henry Wright replied to the topic Disable User to Create or Upload Media? in the forum How-to & Troubleshooting 9 years, 1 month ago
Just disallowing file uploads probably won’t work because BuddyMedia is likely to have extra functionality that needs to be disabled (such as albums)
Try asking this same question on their support forum:
-
Henry Wright replied to the topic Disable User to Create or Upload Media? in the forum How-to & Troubleshooting 9 years, 1 month ago
user can still create an album
You didn’t mention albums! Are you using a plugin?
-
Henry Wright replied to the topic Blocking email domain names from registering? .RU .PL in the forum How-to & Troubleshooting 9 years, 1 month ago
I’ve used the Ban Hammer plugin successfully for this in the past.
-
Henry Wright replied to the topic hide members list on opening directory in the forum How-to & Troubleshooting 9 years, 1 month ago
You can filter using
bp_after_has_members_parse_args. Take a look here for examples: -
Henry Wright replied to the topic customizing profile-header in the forum How-to & Troubleshooting 9 years, 1 month ago
Can you show us the full path you have to your child theme’s member-header.php file?
It should be your-theme/buddypress/members/single/member-header.php
-
Henry Wright replied to the topic Disable User to Create or Upload Media? in the forum How-to & Troubleshooting 9 years, 1 month ago
I’m wondering if the remove_cap() method is what you need. Try adding this to functions.php. Feel free to remove it after you’ve visited the front end of your site, it just needs to be run once.
add_action( 'init', function() {
$role = get_role( 'subscriber' );
$role->remove_cap( 'upload_files' );
} );You can do the same with the…[Read more]
-
Henry Wright replied to the topic BuddyPress Newsletter relaunched in the forum Miscellaneous 9 years, 1 month ago
These are fantastic, Slava, keep them coming!
- Load More
@henrywright
Active 2 years, 1 month ago