Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25358
    Brajesh Singh on in reply to: Activity Stream Shortcode #32017

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25358

    Hi,
    Thank you for linking

    You 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25358

    Hi Carsten,
    Thank you for confirming.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25358

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25358

    Hi Daniel,
    The cover upload worked for me properly. Is there any chance your cover upload was disabled leading to 404?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25358

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25358
    Brajesh Singh on in reply to: Crazy with thumbnails #32008

    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
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25358
    Brajesh Singh on in reply to: BuddyPress User Badges shortcodes #32007

    I See,
    It seems you are referring to this line

    slug:- 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
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25358
    Brajesh Singh on in reply to: BuddyPress User Badges shortcodes #32006

    Hi,

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25358
    Brajesh Singh on 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