Replies
Hi,
Thank you for reporting.It is a known issue that the plugin does not allow posting/commenting with BP Nouveau template and BuddyBoss theme.
We do not plat to add any support for it as BuddyBoss is bringing their own block/shortcode for activity listing and so is BuddyPress.We only plan to continue support for the BuddyPress legacy template.
Regards
Brajesh- Brajesh Singh on July 29, 2020 at 6:51 pm in reply to: [Resolved] Buddypress Profile page background color change #32014
Hi,
Thank you for linkingYou may want to set the default background for the user pages like this
.bp-user .elementor-location-header { background: #ccc; /* please change */ }You can add it by visitng Dashboard->Apparance->Customize and putting it in the “Additional Css” section.
Regards
Brajesh - Brajesh Singh on July 29, 2020 at 6:40 pm in reply to: [Resolved] Recent Visitors shortcode creating issues in Blocks #32012
Hi Carsten,
Thank you for confirming.Regards
Brajesh - Brajesh Singh on July 29, 2020 at 6:38 pm in reply to: [Resolved] Create a popup for letting the user know that the account has been deleted? #32011
Hi Daniel,
you may use the following code to do that./** * Redirect user to a page after account deletion. */ add_action( 'bp_core_deleted_account', function () { // $url = "http://yoursite.com/some-page/"; $url = site_url( '/account-deleted/' ); bp_core_redirect( $url ); } );Regards
Brajesh - Brajesh Singh on July 29, 2020 at 6:35 pm in reply to: Maintain Xprofile fields when registering via Google Account #32010
Hi Daniel,
The cover upload worked for me properly. Is there any chance your cover upload was disabled leading to 404?Regards
Brajesh - Brajesh Singh on July 29, 2020 at 6:33 pm in reply to: [Resolved] BuddyPress Member Types Pro – LernDash Groups Issue #32009
Hi Amir,
I am sorry for the trouble.Can you please tell me the following:-
1. Was it working as expected earlier?
2. if yes, did you upgrade Learndash, theme or some dependency plugin recently?If you can help us understand what triggered the issue, we will be able to resolve it quickly.
Thank you
Brajesh Hi Nelson,
Welcome to BuddyDev forums.You may use MediaPress Local Transcoder to automate it(extraction of image from video) or your users can manually upload cover.
https://buddydev.com/plugins/mpp-local-transcoder/
Regards
BrajeshI See,
It seems you are referring to this lineslug:- It is required. It is the slug of the badge. For Role/Member types based badge, It is the role name e.g “administrator” or the member type name.
Please see the example below that. We haven’t used any encoded quotes in any of the example and if this sentence has caused issue, I am updating it.
Regards
BrajeshHi,
1. Please upgrade to 1.1.8 and it has proper support for BuddyBoss theme
2. slug=”author” is incorrect. It seems WordPress has encoded the quotes. We do not use this encoded quotes. You should use either plain quote(single or double) or no quote at all.
Please link me to the page where you found that encoded entity. I had removed it from our plugin documentation page a few weeks ago.
Thank you
Brajesh- Brajesh Singh on July 28, 2020 at 9:41 pm in reply to: Hide a member type in Profile Search Forms #31996
Hi Ramon,
My apology for missing this topic.1. Please remove the code suggested by Ravi above.
2. Please find out the name(not the label, It is the unique name) for each allowed member types. Let us say, they are ‘student’, ‘teacher’.
We can put the following code in bp-custom.php
/** * Restrict allowed member types in search. */ add_filter( 'bpmtp_profile_search_form_allowed_member_types', function ( $types ) { return array( 'student', 'teacher', //add your own. ); } );Please feel free to add/remove the member types as you please.
Regards
Brajesh