BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] default Profile Cover Image #51803

    Hello Gisela,

    Sorry, I understood your requirement wrongly. Please use the following code:

    
    add_filter( 'bp_before_members_cover_image_settings_parse_args', function ( $settings ) {
    	// Use 1300x225 resolution.
    	$settings['default_cover'] = 'http://example.com/65dd8d5628062-bp-cover-image.jpeg';
    
    	return $settings;
    }, 20 );
    
    

    It may depend on your theme. Please give it a try and let me know if it works or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] default Profile Cover Image #51798

    Hello Gisela,

    Please use the following code:

    
    add_filter( 'bp_core_default_avatar_user', function ( $avatar_url, $params ) {
    
    	$type = 'full' === $params['type'] ? 'full' : 'thumb';
    
    	if ( 'full' === $type ) {
    		// Recommended 150x150 resolution.
    		//$avatar_url = 'http://example.com/6944274-150x150.png';
    	} elseif ( 'thumb' === $type ) {
    		// Recommended 50x50 resolution.
    		$avatar_url = 'http://example.com/6944274-50x50.png';
    	}
    
    	return $avatar_url;
    }, 10, 2 );
    
    

    Please give it a try and let me know.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: buddypress-user-badges php error #51797

    Hello,

    Can you please let me know which version of the plugin you are using? It seems you are using an older version of the plugin. Please upgrade the plugin to the latest version and then give it a try.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: bp-user-testimonials bug #51796

    Hello,

    It seems you are using an older version of the plugin this notice was already fixed in version ‘1.2.1’. Please upgrade to the latest version of the plugin and then check.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: bp-user-testimonials bug #51795

    Hello

    Thank you for posting. It seems you have upgraded the PHP version that’s why you are getting these errors please share the details and the plugin and php version you are using. I will fix this and will update you.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] default Profile Cover Image #51794

    Hello Gisela,

    Thank you for posting. Yes, you can set an image as a default profile image for all the users who do not have uploaded any profile photo. I will share the code at the day end.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: buddypress-user-badges php error #51793

    Hello,

    Sorry for the inconvenience and thank you for sharing the errors. we will fix this soon and update you. For the time being, you can ignore these warnings.

    Regards

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Tosin,

    Sorry for the delayed reply. I have skipped this topic somehow, so thank you for reminding me. I will give it a try today and will update you.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Can you disable the Wall Photos Gallery #51679

    Hello Cheryl,

    To disable media posting in activity please disable the setting “Allow Activity Upload?”. You can locate this setting by the following path:

    MediaPress > Settings > BuddyPress > Activity Setting.

    Please check.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Featured member plugin – add extra filter option(s) #51678

    Hello Melaine,

    Thank you for the acknowledgement. I will update you by the weekend.

    Regards
    Ravi