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: 25285

    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: 25285
    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: 25285

    Hi Clay,
    Thank you for purchasing the plugin.

    I will put an update today.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25285

    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: 25285
    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: 25285

    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: 25285
    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: 25285
    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

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

    Hi amv,
    Is there a chance that you were logged in as super admin while testing the plugin.

    The plugin does not apply any limit when the message sender is super admin.

    For limit to admin, this plugin is not suitable for that purpose. This plugin is mostly aimed at restricting message flooding.

    We do have the message privacy plugin that partially does the job. The problem is that plugin does not have an option to disable the settings for users yet.

    If you want, I can post some code that will allow admin only message. Please do note that it won’t work with the Rate limiter plugin.

    Please let me know and I will do the needful.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25285
    Brajesh Singh on in reply to: Display Bp Featured Member on template #11039

    Hi Edwrd,
    Welcome to BuddyDev.

    The simplest way will be to use the shortcode. Using shortcode is much more flexible(options).

    for template(using php), there is no better way than this.

    Hope that helps.

    Regards
    Brajesh