Replies
Hi Jose,
Can you please re enable everything and provide me a temporary subscriber account to check it.Thank you
BrajeshHi Jose,
Welcome to BuddyDev.Are you using any activity privacy plugin?
- Brajesh Singh on October 14, 2017 at 12:08 pm in reply to: [Resolved] Member Type fields in Buddypress registration form not showing correctly #11060
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 - Brajesh Singh on October 14, 2017 at 11:33 am 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 - Brajesh Singh on October 14, 2017 at 11:32 am in reply to: [Resolved] Changes to Media Moderator emails not taking effect #11058
Hi Clay,
Thank you for purchasing the plugin.I will put an update today.
Thank you
Brajesh - Brajesh Singh on October 11, 2017 at 2:54 pm in reply to: [Resolved] Member Type fields in Buddypress registration form not showing correctly #11050
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 labelIs 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 - Brajesh Singh on October 11, 2017 at 10:18 am 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 - Brajesh Singh on October 11, 2017 at 10:17 am in reply to: [Resolved] Member Type fields in Buddypress registration form not showing correctly #11047
Hi Johan,
Thank you for purchasing the plugin. I just checked and here is what it looks to mehttps://i.imgur.com/wD5XWkk.png
https://i.imgur.com/6dcpRI7.pngThe 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.
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 - Brajesh Singh on October 10, 2017 at 11:38 pm 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 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