Replies
- This reply has been marked as private.
- Brajesh Singh on March 18, 2019 at 3:15 am in reply to: Question – Plugin " One Click Mark Spammer for BuddyPress " + Feature ideas #21561
Hi Michaël,
Thank you for the suggestion.It seems to me that this is more suited for our BuddyPress Moderation Tools plugin. Since we already have the functionality of user account moderation, we can add the option for site admins to restricted moderated user’s activity.
The One Click Mark spammer is a tiny tool which marks a user as spammer(once a user is marked spammer, they can not login, their all data gets removed).
I will be adding the option to restrict commenting for moderated user within next 2 releases of the moderation tools.
Please correct me if I misunderstood the question.
Thank you
Brajesh Hi Denna,
Thank you for the question.
I am not sure why the plugin is deactivating. Did you notice any pattern? Does it happen on saving some BuddyPress settings or something you can tell me.
About the design, the plugin is aimed at theme developers. It helps adding 3 pages in theme which are themeable. The plugin mostly acts as router/action handler and does not handle the design part.
That’s why you haven’t seen the optiosn.
From our previous discussion, I recall that you prefer non code solutions. My suggestion will be to use a login customizer plugin that is mostly aimed at site admins to create better experience.
Regards
Brajesh- Brajesh Singh on March 18, 2019 at 2:56 am in reply to: How do I increase the size of images and video in the lightbox? #21559
Hi Vanessa,
Thank you for using MediaPress.The width is hardcoded in css and that’s why it has scaled to 400px.
I have moved away from this scaling and in the upcoming version, MediaPress uses flexbox layout in the lightbox to provide better experience.
https://github.com/buddydev/mediapress/commit/d9245a4f7809a5459f39f49d60346683265fd721
To apply this for now, Please replace wp-content/plugin/mediapress/assets/css/mpp-core.css with the contents from this page.
https://raw.githubusercontent.com/buddydev/mediapress/master/assets/css/mpp-core.css
Please let me know if that works or not?
Regards
Brajesh - Brajesh Singh on March 15, 2019 at 7:00 am in reply to: [Resolved] Check if checkbox have data and print corresponding member name #21547
The code gives you an array of the user ids who have that specific data in their profile. Now, you can loop through it anywhere and print the related information for users. It can be used at any place.
You need to decide on what you want to fetch and print for each user.
Please look at xprofile_get_field_data() for fetching field data for a user.
Regards
Brajesh Hi,
Can you please visit the profile of the specific user(You are passing as the second parameter) and confirm that on view profile the data is being shown for new fields?The possible reasons are:-
1. Either data is not set for the given user for the new fields.
2. Or the Field name is not being parsed to field id. Try using Field id(numeric value in place of field name).Let me know what you find.
Regards
Brajesh- Brajesh Singh on March 14, 2019 at 9:31 pm in reply to: [Resolved] Check if checkbox have data and print corresponding member name #21543
Hi,
Thank you for the patience.You can use the following query to fetch all users which have checked a specific option
$user_query = new BP_User_Query( array( 'xprofile_query' => array( array( 'field' => 16, // field id or name. 'value' => 'multiselectbox 1', // value. 'compare' => 'LIKE', ), ), 'populate_extras' => false, ) ); $user_ids = $user_query->user_ids;Make sure to change the value and the field id with your own.
I hope you can take care of the loop to display the users from there.
Regards
Brajesh - Brajesh Singh on March 14, 2019 at 9:20 pm in reply to: [Resolved] Idea to protect comments with BuddyPress Profile Visibility Manager #21542
Hi Thorsten,
Thank you.It’s a great suggestion. What you are looking for activity/activity comment privacy.
Currently, Enabling activity/activity comment privacy is something that can become a bottleneck for even a moderately sized BuddyPress community.
The current activity stream is not well architected for it(and even if it was, using RDBMS for the activity and read time feed building has severe limitations).
That is one of the reasons, we call our plugin profile visibility manager and not the privacy as we only deal with visibility/accessibility of user profile and not the content generated by users(such as blog post, comment, activity, forums topics etc).
In future, I may be interested in exploring limited activity privacy but right now, We are unable to add it as it will limit the plugin or will cause issues for mostly non suspecting site owners.
Whenever we do add privacy, we will have to work for all content generated by the user.
Thank you
Brajesh - Brajesh Singh on March 14, 2019 at 9:05 pm in reply to: [Resolved] Styling issue on different browsers with plugin "BuddyPress Poke" #21541
Hi Thorsten,
I am sorry, It is not the plugin. The plugin does not have any kind of emoji. It is most probably the theme.The plugin does not add any css as you may see it from here
https://github.com/buddydev/bp-pokeMy guess is the theme is adding something based on classes and which might be the issue. Please contact the theme developer for it.
Regards
Brajesh Hi Raakesh,
Welcome to BuddyDev.
I am sorry, we do not support User Ultra(I have tried it a few months back as it presents an alternative for creating communities).
I hope the User Ultra team will support you.
Best Regards
Brajesh