Replies
- Brajesh Singh on March 5, 2020 at 7:36 pm in reply to: [Resolved] POssible conflict with Snax/Bimber #28078
Hi Sigfrido,
Thank you for the patience.Please upgrade to 1.4.0 and let me know if it works or not?
Regards
Brajesh - Brajesh Singh on March 5, 2020 at 7:23 pm in reply to: Branded Login for BuddyPress not working! #28076
Hi Eli,
Thank you for reporting.We haven’t tested it with Divi. Please allow me to check and get back to you in couple of hours. It is most probably a template layout issue.
Regards
Brajesh - Brajesh Singh on March 5, 2020 at 7:22 pm in reply to: [Resolved] Activity Plus Reloaded for BuddyPress #28075
Hi Linda,
Please see
https://buddydev.com/docs/buddypress-guides/what-is-bp-custom-php/PS:- I am putting it as an option in the plugin settings itself over the weekend.
Regards
Brajesh - Brajesh Singh on March 5, 2020 at 7:19 pm in reply to: [Resolved] Private message button for non logged in users #28074
You are welcome.
I am glad it worked.Regards
Brajesh - Brajesh Singh on March 5, 2020 at 7:14 pm in reply to: Is there a way extend or customize the "Recent Visitors For BuddyPress Profile" #28073
Hi Mical,
Thank you.yes, it is possible but a better option is to disable recording for the other member type.
/** * Disable recording of visits of a particular member type. */ add_filter( 'visitor_is_visit_recordable', function ( $is_enabled, $user_id ) { $non_recordable_types = 'teacher';// member type. if ( bp_has_member_type( $user_id, $non_recordable_types ) ) { $is_enabled = false; } return $is_enabled; }, 10, 2 );Regards
Brajesh - Brajesh Singh on March 5, 2020 at 7:06 pm in reply to: [Resolved] Mediapress – padding issue. When clicking on buttons! #28072This reply has been marked as private.
- Brajesh Singh on March 5, 2020 at 7:03 pm in reply to: [Resolved] POssible conflict with Snax/Bimber #28071
Thank you.
I appreciate their feedback.I will post an update within couple of hours.
Regards
Brajesh - Brajesh Singh on March 5, 2020 at 1:54 pm in reply to: Mediapress plugin media input dialogue box close button persisting after close #28067
Hi David,
Thank you.1. Clicking icon to close will still work. It was not obvious for many people though. We haven’t changed that at all.
2. I am sorry, the opening/closing has nothing to do with ajax. It seems some javascript events might not be bound(I need to verify this).
3. I beg to differ about the activity plus, can you please tell me what is better experience there? I took over it as it was needed by the people. I believe it has very limited functionality(allowing to upload to activity).
For MediaPress, activity upload is just one of the many things. MediaPress can be used without BuddyPress, or with BuddyPress but without activity upload too.
It is aimed at managing collection of media. Activity Plus has 1 goal and that is to allow uploading/adding media in the activity stream(can’t handle video/audio upload) and there ic no concept of managing media.These two serve to very different audiences.
Regards
Brajesh - Brajesh Singh on March 5, 2020 at 8:41 am in reply to: BuddyPress Profile Completion – Alert doesn't disappear #28062
Hi Enrico,
Welcome to BuddyDev.Thank you for the feedback.
It is difficult to standardize this behaviour as all themes have their own way of implementing the uploads and there is no common way to subscribe to the uploaded event using javascript(it is possible for Nouveu template pack).
So, I am afraid, I do not see a proper solution.
May I suggest requesting your theme developer to reload the page after successful upload, that will fix it.
Regards
Brajesh - Brajesh Singh on March 5, 2020 at 8:37 am in reply to: [Resolved] Activity Plus Reloaded for BuddyPress #28061
Hi ,
Please try putting this in your bp-custom.phpdefine( 'BPFB_LINKS_TARGET', 'external');Let me know if that works or not. I might have to delay the test a bit in the plugin if it does not work.
Regards
Brajesh