Replies
Hi Lee,
To start troubleshooting I will suggest first checking the bp_notifications table and see if notifications from ‘bdbp_unotifier’ is being added or not?Hi Lee,
The code should work fine on php 5.3Have you tried posting an activity after activating the plugin and then logging in as the friend of the user?
Hi Lee,
Can you please download this(It is specifically for 1.8)
https://github.com/buddydev/bp-user-activity-notifier/archive/bp1.8.zipOthers looking at this thread, Please use
https://github.com/buddydev/bp-user-activity-notifier/ instead.Since WordPress 3.7 will not work on my system(I am using php 7+), I had to make some guess work for the back compatibility and was not able to test. Please give it a try and let me know.
Thank you
- Brajesh Singh on September 3, 2016 at 1:07 am in reply to: [Resolved] different shortcode in different member type page #5383
Hi Elio,
Thank you for asking.
1. You can create members/index-directory-type-MEMBERTYPE.php for each and put the code there or the easy way is to edit yourtheme/buddypress/members/index.php and use bp_get_current_member_type() to check for your member type and output the correct form.
Hope that helps.
Regards
Brajesh Hi Arvind,
Please put this in your bp-custom.phpfunction buddydev_add_more_notifiable_user_ids( $user_ids ) { if ( function_exists( 'bp_follow_get_following' ) ) { $user_ids = array_merge( $user_ids, bp_follow_get_following( array( 'user_id' => bp_loggedin_user_id() ) ) ); } return array_unique( $user_ids ); } add_filter( 'buddydev_user_notifier_notifibale_user_ids','buddydev_add_more_notifiable_user_ids' );That will notify users on any new activity of the people they are following.
@ljmac,
No problem. I am on it.- Brajesh Singh on September 2, 2016 at 11:00 pm in reply to: BP notifiy post author – read notifications #5380
Hi Brincy,
It seems it was deleting the notification. we had it updated for marking notification as read on github but we had not uploaded here. So, I cleaned a little and have uploaded version 1.0.3https://buddydev.com/plugins/bp-notify-post-author-blog-comment/
Please upgrade and let me know if that works for you or not?
Thank you
Brajesh Hi Lee,
thank you for the tests. I had not tested it on 1.8, so It is quiet possible that the hooks I am using is not even available. Will do testing and fork out a branch for 1.8.Hi Lee,
I am sorry I did not check that. There may be an issue related to adding/deleting notification. can you please try this and see if it works or not? If not, i will update it.
@Arvind,
Sure. will post in the evening.- Brajesh Singh on September 2, 2016 at 2:47 am in reply to: Is there a way to create a slider with defined photos from MediaPress? #5370
Hi,
Welcome to BuddyDev.
There is no popularity options at the moment unless you are using the rating/voting plugin etc.But yes, you can use the media with all kind of slideshows/lightboxes. We have a few integrations coming for light gallery slideshow etc.
All you need to fetch the media(photos) is a MediaPress media Loop
Please see this document to create custom Photo lists
https://buddydev.com/mediapress/topics/api-reference/core/mpp_media_query/
Hope that helps.
Regards
Brajesh Hi Arvind,
I haven’t added that out of the box but I left a filter to allow it working with all kinds of 3rd party plugins