Hello, we have the plugin BuddyPress Live Notification in a WordPress 6.1.1 with Youzify. Lately it’s not showing a circle color around your profile picture when you have notifications. Any solution? Thanks!
Also, we have the plugin modified: Version 99.1.000
Hi,
We have been using BuddyPress, Woocommerce and the NM Gift Registry plugins to setup a social/shopping site on our end. We have the Vikinger theme currently active on it.
We installed and activated the BuddyPress Live Notifications plugin on our staging site and it is showing notifications incorrectly as you can see here: https://snipboard.io/ADhI68.jpg
It seems that the plugin is not compatible with the theme and it is also not updating the notifications tab in the Header https://snipboard.io/CfUAeS.jpg. Can you please take a look and suggest how we can make the plugin work with the current theme and why some of our custom notifications are not showing up.
Thank you.
Sumugh.
Buddypress Live Notification Not Working.
When I click on the link, the notification link doesn’t work.
How can I change the notification address?
It is updating the counter but not changing the bubble color. Also, it won’t change the notification dropdown width to fits the content. Any idea?
]]>Hello there. Thanks a lot for your work – and for the respective reply.
I really would like to use your live notification plug-in, but nothing happens. There is no settings option/-link in the admin panel – and if i get messages, no popup appears.
Would you please help to get it solved? Thank you.
Truly
Tom
Hi, is it possible to give the user the options in their settings to turn this off if they want to?
]]>How do I translate the notification texts in Hebrew?
]]>Hi I installed and and it works but the notification-counter does not get displayed.
This is how it is rendered. Not compatible with the theme? How can I update it?
<div class=”gp-profile-button gp-header-button menu-item gp-standard-menu gp-has-menu”>
1
Buddypress 3.0 now requires that bp_notifications_get_notifications_for_user have 8 parameters instead of 5. Therefore, I had to change:
/** This filter is documented in bp-notifications/bp-notifications-functions.php */
$description = apply_filters_ref_array( 'bp_notifications_get_notifications_for_user', array(
$notification->component_action,
$notification->item_id,
$notification->secondary_item_id,
1
) );
to
/** This filter is documented in bp-notifications/bp-notifications-functions.php */
$description = apply_filters_ref_array( 'bp_notifications_get_notifications_for_user', array(
$notification->component_action,
$notification->item_id,
$notification->secondary_item_id,
1,
'string',
$notification->component_action,
$notification->component_name,
$notification->id,
) );
to get it stop throwing errors with my “bp_notifications_get_notifications_for_user” custom filter.
]]>Hello,
I would like to display the notifications in my topbar and not in the admin bar, as I have disabled it. Can you please explain me how to do this?
Thank you.
Vlad
Will this plugin help with adding notifiers to the “bubble” at the top when someone replies to post in a topic you have started, or to a post in a topic you follow?
]]>Hi Support,
I installed it twice but I don’t see any Notification dropdown on my site please help.
Thanks,
]]>I was really hoping this plugin would work. I installed and activated it, then went into the front end to test…and the screen was just white and blank. There was no error message, no text whatsoever. I had to deactivate it to make the site work as usual.
Has this happened to anyone else? Any solutions?
WordPress 4.5.2. Buddypress 2.5.3.
]]>Hi,
I have installed your plugin successfully.but i can find plugin related options in my admin dashboard.I am using a simple theme.Can you please tell me how to integrate this plugin.im using BuddyPress 2.3.5
]]>Hi, I am using both this plugin and your BuddyPress Activity Comment Notifier plugin. I don’t know which one of these plugins is causing this issue, however, when someone comments on a photo, both a “commented on your post” and “commented on your photo” show up as notifications. Seems redundant and a waste of processing time and disk space to store an extra notification. Any ideas? If it helps, my site uses rtMedia for image handling. Thank you for your time, and great plugin.
]]>I use only WPLMS theme in a localhost installastion with this plugin and the notifications are not working. How should I do to debug and get to the source of the conflict so I can correct it ? Thanks.
]]>Hello, im using
BuddyPress Live Notification
and
BuddyPress Wall
And when some one post on the wall, plugin (BuddyPress Live Notification) show empty bubble, is any way to fix it ?
Hi,
i`m looking for an acoustic signal when a new post arrived in my stream/ group stream.
Is it possible to integrate this function? Does anyone have an idea?
]]>this plugin does not work, never has worked
]]>Does this plugin work if you have turned off the admin bar and restricted backend access?
Thanks!
]]>I love the fact that the new version of the plugin uses the WordPress heartbeat api but there are three issues with it that make it practically unusable.
1) Multiple alerts for the same notification.
2) Text in the dropdown is sometimes squashed on top of itself and unreadable.
3) In conjunction with your Bp Clear Notifications plugin the clear notifications button does not always feature at the bottom of the dropdown but in random positions amongst the notifications.
None of these were issues with the previous version of the plugin – so I have had to revert back to the old one until you are able to fix it.
]]>Box pops up, but can’t see text. I’m thinking maybe it’s my theme. Any suggestion on how to style text with css?
BTW – Great Plugin!
]]>On my website majorashub.com, the notifications keep popping up over and over and don’t stop.
The notification count in the admin bar adds up every time the notification is repeated too.
]]>It would be great, if the popup would contain a link, that would allow the user to directly navigate to the new message.
]]>I just upgrade my BuddyPress, after upgrade the live notification stop working.
]]>Hi, this plugin is great! Thanks for building it ??
Can you please tell me how I can add a second area for notifications to appear instead of the admin bar? I’ve got the admin bar turned off for non-admin users, so most of my users don’t see the notification area; they only see the popup at bottom left.
Thank you!
]]>Plugin does not work with the latest Buddypress 2.1.1 – did work well with 2.1
Can the plugin be updated to be made compatible?
Paul.
]]>Buddypress live notifications doesnt show up on my site, and theres no way to change the settings of it?
Thanks
I don’t have my admin bar showing on my site, can the notification counter be added to a menu?
]]>Hi there,
I fixed this live notifications with two simple steps, and now it works.
1. Replace enclosed quotes in server response (see file bpln.js from line 20):
var d2 = data.replace(/^\"(.*?)\"$/, "'$1'");
data=JSON.parse(d2);
2. Add NULL argument to function call in file bp-live-notification.php at line 152:
$notifications =$wpdb->get_results( $wpdb->prepare( "SELECT * FROM {$bp->core->table_name_notifications} WHERE id in {$list_ids} AND is_new = %d", NULL), 1 );
Optionally you can add “alert” class to notification (bp-live-notification.php, line 121:
$menu_title = sprintf( __( 'Notifications <span id="ab-pending-notifications" class="pending-count alert">%s</span>', 'buddypress' ), count( $notifications ) );