Replies
- Brajesh Singh on February 13, 2017 at 4:02 am in reply to: send notice when bp Message Rate Limiter activates? #7316
Hi djSteve,
My apologies for the delayed reply.Thank you for the suggestions.
Though we won’t be able to add the logging(logging needs implementation for log rotations, management screens) and a lot which is not the goal of the plugin, We can easily send an email on triggering the limit.
If you are interested, please let me know and we can start working on the email triggers.
Thank you
Brajesh Hi Graham,
Thank you.Can you please update to the new release and let me know if it fixes the issues.
The list of changes are here
https://buddydev.com/docs/guides/community-builder/releases/buddypress-community-builder-theme-version-1-0-7-release/At the last moment , I had to hold a few changes(panel colors/card colors). We will be pushing those this week too.
Thank you
Brajesh- Brajesh Singh on February 11, 2017 at 8:04 am in reply to: MediaPress on Multisite – Profile Galleries Not Integrated #7307
Hi Mary,
You are using BuddyPress with Multiblog mode enabled.MediaPress is not compatible with Multi Blog mode. It will allow you to have separate galleries for each of the blogs but there is no concept of global galleries on multisite. MediaPress galleries are just posts(post type) and on multisite each blog have their own specific posts.
I am sorry for the trouble but MediaPress is not suitable in this use case.
Thank you
Brajesh Thank you Ben.
You already realized it. I will also suggest completely avoiding pre_get_posts as it will have side effect.It will better to directly modify the template in this case. If you still want to use pre_get_posts, I suggest pairing it with the following conditions
if ( function_exists( 'bp_is_buddyblog_component' ) && bp_is_buddyblog_component() ) { }Regards
Brajesh- Brajesh Singh on February 10, 2017 at 6:37 am in reply to: None gallery Images are not showing in main Activity stream #7296
Hi Lynn,
Please visit Dashboard->MediaPress->Tools and post me the details. That will help me greatly understanding the issue.Thank you
Brajesh - Brajesh Singh on February 10, 2017 at 6:14 am in reply to: Blurred images in the Activity stream #7295
Please do let me know when you have the details.
- Brajesh Singh on February 10, 2017 at 6:06 am in reply to: [Resolved] How to get notification for new topic added in subscribed forum (bbpress) #7292
You are welcome!
- Brajesh Singh on February 10, 2017 at 5:38 am in reply to: [Resolved] How to get notification for new topic added in subscribed forum (bbpress) #7289
Sorry about that. I was cleaning before update and I had used it for somereason instead of the correct one(bpp_get_topic_permalink).
Please re download it. I have pushed the change.
Thank you
Brajesh Hi Ben,
I am sorry. I am, looking at it now., will get back to you soon there.- Brajesh Singh on February 10, 2017 at 4:44 am in reply to: Displaying title and user on shortcode pages #7286
Hi,
Please use the code from here/** * Display the name of the creator of the gallery below gallery cover * */ function mpp_custom_display_gallery_owner_name() { $gallery = mpp_get_gallery(); if ( ! $gallery ) { return ; } printf( 'by: %s', bp_core_get_userlink( $gallery->user_id ) ); } add_action( 'mpp_gallery_shortcode_item_meta', 'mpp_custom_display_gallery_owner_name' );For other cases, you may take a look at the code here
https://gist.github.com/sbrajesh/b47b84c3fdca9b76f04e696894a80d06We will be pushing the changed code(sorry, we missed the last deadline), hopefully this sunday too.
Thank you. We will keep you informed.Regards
Brajesh