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: 25407
    Brajesh Singh on in reply to: Sitewide Activity Widget #11065

    Hi Jose,
    Can you please re enable everything and provide me a temporary subscriber account to check it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407
    Brajesh Singh on in reply to: Sitewide Activity Widget #11063

    Hi Jose,
    Welcome to BuddyDev.

    Are you using any activity privacy plugin?

  • Keymaster
    (BuddyDev Team)
    Posts: 25407

    Hi Johan,
    My apologies for the delayed reply. Been a little bit away.

    I will look at description one more time and update you. If it is happening for all the fields, It is a theme issue. In BuddyPress 2.9, the field description is included with field and theme’s need to remove that code.

    Also, using multiple member type is fine. What I suggest is do not use multiple member type field.

    Create a single field with “Multi Member Type” and use it to allow users select multiple member type. It will allow easy synchronisation.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407
    Brajesh Singh on in reply to: [Resolved] BuddyPress Limit Friendship Issue #11059

    Hi Preethi,
    Please open a new topic with more details(version of wp/bp/theme) and I will assist promptly.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407

    Hi Clay,
    Thank you for purchasing the plugin.

    I will put an update today.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407

    Hi Johan,
    Thank you.
    I just had the look and the problem lies with your theme’s css.

    The selector

    #minimal-registration-container .thrive-register-fields-xprofile label
    

    Is positioned absolute and causing issue.

    If you add this

    
    #minimal-registration-container .thrive-register-fields-xprofile label {
    
    position: static !important;
    }
    
    

    In your css, It will fix the issue.

    I also noted that you are using multiple member type field. Please use only one member type field.

    Since you want your users to have multiple member type, I will suggest using “Multi Member Type field”

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407
    Brajesh Singh on in reply to: BuddyPress Private Message Rate Limiter #11048

    Hi,
    you don’t have to pay anything. I will either post the code here or add it to Rate Limiteer/other plugin. Please allow me 24-36 hours to put the changes.

    Thank you
    brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407

    Hi Johan,
    Thank you for purchasing the plugin. I just checked and here is what it looks to me

    https://i.imgur.com/wD5XWkk.png
    https://i.imgur.com/6dcpRI7.png

    The only thing I see missing is the field description(which BuddyPress 2.9 has moved to the field implementation instead of the theme). We kept that away to support existing theme. I am going to add the test for 2.9 and the description today.

    AS for your question:- Is there a chance that you are using multiple member type fields? If yes, we do not recommend it. It won’t have any issue in showing the field. The problem will be synchronizing/updating the field to the user’s actual member type.

    https://buddydev.com/docs/guides/plugins/buddypress-plugins/buddypress-member-types-pro/creating-buddypress-member-type-profile-fields/

    Is there any reason you can not use single member type field(multi option or single option).

    Please let me know and I will assist further.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407
    Brajesh Singh on in reply to: BuddyPress Moderation – Report Users/Groups #11044

    Hi Matthias,
    It is on our radar for future. No ETA as of now though.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25407
    Brajesh Singh on in reply to: Profile visibility last activity #11043

    Hi,
    I am sorry I forgot to reply.

    Please put this code in your bp-custom.php

    
    // Hide activity of the user from directory, and single
    function buddydev_hide_activity_conditions( $where_conditions, $args ) {
    
    	if ( ! function_exists( 'bp_profile_visibility_manager' ) ) {
    		return $where_conditions;
    	}
    
    	// Do not hide on user profile.
    	if ( ! bp_is_user() ) { // change it to bp_is_my_profile() to only show for the user.
    		$sql_hidden         = bp_profile_visibility_manager()->get_users_sql( 'bp_profile_visibility', 'self' );
    		$where_conditions[] = "a.user_id NOT IN ({$sql_hidden})";
    	}
    
    	return $where_conditions;
    }
    
    add_filter( 'bp_activity_get_where_conditions', 'buddydev_hide_activity_conditions', 10, 2 );
    
    

    Please feel free to customize it as needed.

    Hope it helps.
    Regards
    Brajesh