Replies
- Brajesh Singh on April 13, 2018 at 2:47 pm in reply to: How to make someone become featured members? #14457
Hi Julia,
Please see the documentation of the plugin. It allows you to copy the template and modify it as you please.The back-end button is a convenience and I will add it in future. I am thinking of a bulk update option is a better suit instead for backend.
For your 2nd request, please customize the template.
Regards
Brajesh Hi Jill,
Thank you.I was able to check(my password did not work but I used the older username/password combo you had given me on another topic).
Your theme has background property set for almost all layers of container. It will be very difficult to get it working on body and there are 3-4 layers above that and they all have background colour set.
If you are trying to apply it only to a section of the site, Please let me know and I can quickly check if that is feasible.
The limitation in this case is that even if we apply the background layer if a layer above it has non transparent background set, the background will be hidden.
Regards
Brajesh- Brajesh Singh on April 13, 2018 at 2:13 pm in reply to: Display sitewide activity for followers only #14455
Hi Tosin,
At the moment, The FB Like User Activity Stream does not work on sitewide activity. Please allow me a week to release an update for the FB Like Activity Stream to support sitewide stream.Regards
Brajesh Hi Jill,
Thank you.Please link me to the site too.
About MediaPress:- After your message, I have added support for it to work with the sitewide activity widget out of the box. It was 2 lines change in mediaPress
https://github.com/buddydev/mediapress/commit/107bb01831ce3670274763c659de69cc0a550866I am planning to release it on Sunday(with a few more enhancements), so you will be able to use it after that.
Thank you
Brajesh- Brajesh Singh on April 13, 2018 at 1:18 pm in reply to: [Resolved] Editable Activity not work when write activity & upload image #14451
I will need to check before posting. last time I checked Rt media was not using any separation between the text and media items. So, users were seeing the html when we enabled it(yes, There is a filter to enable it for any type).
I will first check with RtMedia this weekend and then will post the code.
Regards
Brajesh - Brajesh Singh on April 13, 2018 at 1:16 pm in reply to: We don't have enough details to suggest a friend yet #14450
1. yes, Friends of Friends is the criteria.
2. There is no snippet for now. Will consider it as a feature request and we will include it in our update for Budydpress 3.0(or before if we update it earlier).
Regards
Brajesh - Brajesh Singh on April 13, 2018 at 1:08 pm in reply to: [Resolved] Limited friends is not right. #14448
Glad you found it.
- Brajesh Singh on April 13, 2018 at 1:07 pm in reply to: [Resolved] Hide current logged in user and admin #14447
Hi Julia,
You can use the following code to achieve same./** * Exclude logged and admin users from BuddyPress users list. * * @param array $args member loop args. * * @return array */ function buddydev_exclude_logged_and_admin_users( $args ) { //do not exclude in admin if ( is_admin() && ! defined( 'DOING_AJAX' ) ) { return $args; } $excluded = isset( $args['exclude'] ) ? $args['exclude'] : array(); if ( ! is_array( $excluded ) ) { $excluded = explode( ',', $excluded ); } $role = 'administrator';//change to the role to be excluded $user_ids = get_users( array( 'role' => $role, 'fields' => 'ID' ) ); $excluded = array_merge( $excluded, $user_ids ); if ( is_user_logged_in() ) { array_push( $excluded, get_current_user_id() ); } $args['exclude'] = $excluded; return $args; } add_filter( 'bp_after_has_members_parse_args', 'buddydev_exclude_logged_and_admin_users' );Regards
Brajesh Hi Jill,
Thank you.This will need specific css. Please link me to a profile on your site and I can check the dom and provide css.
Thank you
Brajesh- Brajesh Singh on April 12, 2018 at 8:25 pm in reply to: [Resolved] Editable Activity not work when write activity & upload image #14431
Hi Julia,
We have tried doing it in part. There is a limitation of our inline editor. We don’t support richtext and that’s why editing media(be it rtMedia or MediaPress ) is not supported as they show links and html.This plugin is not in our current priority but we do hope that we will be able to rewrite it this year and add support for all content types.
Thank you
Brajesh