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: 25394
    Brajesh Singh on in reply to: [Resolved] BuddyPress Editable Activity UTF-8 #49016

    Hi Tomas,
    Thank you for confirming.

    Our team will be testing it tomorrow and we will be writing back with a solution/more details.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Blurry-avatar-images #49015

    Hi Carsten,
    I am sorry, that is coming from avatar attributes and that’s why you are unable to change.

    1. have you changed the avatar thumb size? It seems that BuddyPress is still utilizing the size ’50px’ for thumb leading to the issue.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Carsten,
    This works fine for me.

    
    add_action( 'wp', function () {
    	bp_core_remove_subnav_item( 'profile', 'public' );
    } );
    

    Please do note that it will break access to user’s profile view as the ‘public’ is the default sub nav for profile.
    Also, here is a slightly better version to avoid fatal errors when BP is disabled.

    
    add_action( 'wp', function () {
    	if ( function_exists( 'bp_core_remove_subnav_item' ) ) {
    		bp_core_remove_subnav_item( 'profile', 'public' );
    	}
    } );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Thank you for sharing the details.
    The replies use different filter than activity post. I will look into it in the day and share.
    I may not be able to assist you with domain black listing as there is not a simple filter for that. It is doable but is beyond the time we provide assistance here.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Blurry-avatar-images #49008

    Just had a look at your screenshot and you can see the last rule is forcing 50px.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Blurry-avatar-images #49007

    Hi Carsten,
    My assumption is some css causing it. Will check in the day on the site and assit.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: [Resolved] BuddyPress Editable Activity UTF-8 #49006

    Hi Ivan,
    Thank you for reporting the issue.

    Can you please confirm it is our plugin? I could not find any purchase for this plugin from your account and just thinking that it may not be ours.

    Please confirm and we will test ours.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Buddyblog restrict media upload file types #49004

    Hi Tosin,
    Thank you for the question.
    At the moment, we are using default WordPress uploader/editor and we haven’t added any setting for it.

    We will add something on this line in one of our future release.
    In the mean time, Please give it a try.
    https://wordpress.org/plugins/wp-upload-restriction/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    This reply has been marked as private.