To determine if it is a theme issue, switch momentarily to a WP theme, like 2020.
So that isn’t the problem because all the other changes in that file work perfectly. Maybe is this a problem in the theme?
If the files are not in the correct location in the child theme, then they will not be loaded.
@dcavins I use Youzify & Buddy App theme.
I tried changing to a WP theme and everything worked fine.
In this case, the parent theme does contain BP templates and I modified those files but is possible that everything else changes without any issue and only the comment button fails if the files aren’t in the right child theme folders for BP?
Some parent themes include BP templates.
If your theme does, then copy that file.
Otherwise, to determine if it is a theme issue, switch momentarily to a WP like 2019.
also – makes sure your child theme folders for BP are correct.
For those, not able to see the Invitation content inside profile, this is my scenario.
I was overwriting home.php file inside my child theme so i was missing the following :
elseif ( bp_is_user_members_invitations() ) {
$template = ‘invitations’;
}
and the invitations.php was never triggered.
I m sharing in case someone thinks initially ,as i did, that the problem is much more complex!
Best regards,
George
But by theme is Buddyboss which is by Buddypress.
@kvnandula04 that’s a more theme-specific question, check with your theme support
If you mean after logging in, put this in your theme’s functions.php
function carol_redirect_to_profile( $redirect_to_calculated, $redirect_url_specified, $user ) {
if ( ! $user || is_wp_error( $user ) ) {
return $redirect_to_calculated;
}
if ( empty( $redirect_to_calculated ) ) {
$redirect_to_calculated = site_url();
}
if ( function_exists( 'bp_core_get_user_domain' ) && ! is_super_admin( $user->ID ) ) {
$url = bp_core_get_user_domain( $user->ID );
return $url . 'groups/';
}
return $redirect_to_calculated;
}
add_filter( 'login_redirect', 'carol_redirect_to_profile', 100, 3 );
Hi thanks – I cant paste a link to screenshot link – trying plain text;
I checked again. Here’s what I get (see Last name text field)..
https://www.101christianchat.com/wp-content/uploads/2021/06/set-to-Only-Me-but-seen-by-Everyone.png
(sorry – pastebin takes a while to open)
It may be my theme but Im sending just in case
Buddypress changed old user profile link. So is that possible to user have 2 profile. One for buddypress and other for own profile url. Because i have doctor healthcare related theme and in which user profile available using author_link filter.
But buddypress also used author_link filter for user profile.
So i want both url. one for own profile and one for buddypress profile.
I have user profile link (old user link) : site_url/pharmacy/sunsona/
And need buddypress profile link : site_url/members/sunsona/
But when i active buddypress old user profile link not worked.
Please give me some idea.
Buddypress changed old user profile link. So is that possible to user have 2 profile. One for buddypress and other for own profile url. Because i have doctor healthcare related theme and in which user profile available using author_link filter.
But buddypress also used author_link filter for user profile.
So i want both url. one for own profile and one for buddypress profile.
I have user profile link : site_url/pharmacy/sunsona/
And need buddypress profile link : site_url/members/sunsona/
But when i active buddypress old user profile link not worked.
Please give me some idea.
Thanks – then it may be the theme I’m using. I’ll check again…
buddypress 8.0
Wordpress 5.7.2
WP Mail SMTP 2.8.0
I have tried user activating just with wordpress and it works it sends the activation link and lets the user register.
I have tried with a different theme and still doesn’t send the activation link.
I don’t know what else to give you guys but a Answer would be nice.
BuddyPress will not send the Activation Link no matter what I tried.
I even tried some of the old methods from years ago and it still didn’t help.
Hey – what theme is that? Nice:)
Hi @firefliespilots and all,
To help us understand what’s going wrong with the line 53 of buddypress/bp-core/classes/class-bp-invitation-manager.php, we need your help.
1. Deactivate all plugins except BuddyPress: is the error still there?
2. If yes activate a Twenty theme: is the error still there ?
3. Remove bp-custom.php file or mu-plugins or dropins: is the error still there?
If you have a no after 1. Reactivate plugins 1 by 1 and check the error’s appearance. It should help us find which plugin we need to check on our side.
After 2: it’s a theme issue, etc..
Thanks in advance.
@ideasmakemarket @shahriar83 seems working fine to me https://nimb.ws/pmKBzn, try once with the default theme
if you’d like to be confused even further, take a look at
BuddyPress Cover Images
it seems to say that the BP Theme Compat API uses the filter bp_before_members_cover_image_settings_parse_args for the members Cover Images
or…
something on your site is using that to call the member cover image…
I’m just guessing and floundering.
Hello all.
I’m trying to figure out how to remove the “create group” option when in the groups page. I don’t want my subscribers to have this functionality. How can I remove it?
I thought it was another capability option in the user roles, but haven’t found it. Could someone point me in the right direction?
I’m using using WordPress 5.7. 2 running BuddyPro_Child theme. Thanks!
-Kish
Hi,
1. if not already created: add a bp-custom.php file.
2. into this bp-custom.php file add the following line:
add_filter( 'bp_activity_maybe_load_mentions_scripts', '__return_false' );
Wordpress 5.7.2 BuddyPress 7.3.0 Theme: Gwangi
My site has a search form. When input search fields are matched with a profile, the profile appears on the members results page as it should. Great. However, I want the ability for the person searching to click on the member profile and send them a message (notification) by email.
When I currently follow the above, when I click on the profile of the member there is no-where on the profile page a facility to send them a message. Am I missing something obvious here?
BuddyPress doc says: BuddyPress provides ways for you to send a message publicly to another member of the site or network. It also mentions: Private Message button in the member’s header – but I can’t see that.
It must work that a non-registered person can send a registered person a message. Is this possible?
Site is: https://myfamilyfinder.co.uk/family-search/
To test: If you put Brian in the Current Name search field on the above page and click Submit you’ll get Brian’s Profile appear on the members page.
Don’t use the filter.
Overload this template:
...wp-content\plugins\buddypress\bp-templates\bp-nouveau\buddypress\members\single\home.php
And then replace <?php bp_nouveau_member_header_template_part(); ?>
with a call to the image you want to use.
Hi! When trying to update the activity entries, I’m having an issue each time I change the file in the child theme (even copying the exact original file), the comment button stop working. Please can someone help me identify what is happening?