Search Results for 'notifications counter'
-
Search Results
-
First of all, loving the new release!
The Notifications in the WP bar is AWESOME.
I’ve encountered an error though that was not present prior to updating.
Previously, if someone made an Activity Stream post, and another user commented on that post, the original author would get a BP Notification that a comment was added to their post.
This is no longer happening. After replying to a stream post, the original poster still has 0 notifications.
I do not know if this is also happening with other ‘events’ as well, but it certainly is with stream commenting.
Advice please?
This has to be a bug. I’ve encountered this with two separate installs of WordPress/BuddyPress. The first install was not done by me… I was hired by a client to test out the site. After spending more than a week on the error I decided to do a fresh install on my own server. I followed all Bp Install instruction… and I am very comfortable with doing Wp installs -can do them in my sleep…
Please Read –
Error that I am receiving: Page not found. We’re sorry, but we can’t find the page that you’re looking for. Perhaps searching will help.However, I do not receive this error on all pages… All my main Bp pages work as they should (on both installs)… HOME , ACTIVITY, GROUPS, MEMBERS… As well as pages (menu links) that are in the admin bar (top of site).
Instead I get the PAGE NOT FOUND error on the following menu items:
-Groups / Membership – http://design911.net/main/_client_work/groups/members/admin/groups/my-groups/-Groups / Invitations – http://design911.net/main/_client_work/groups/members/admin/groups/invites/
I also get this errors when attempting to check notifications from Group Invites…
Not sure what to do next. Please help.
Since search is still down here, forgive me if this is a repeat topic. Basically wondering if anyone else has encountered this and can provide a solution. Basically install the BuddyPress Skeleton Component into WP 3.2 / BP 1.2.9.
The example menu tab examples work EXCEPT for the example under the settings tab (where general and notifications are for the profile). The menu tab is visible, but click it and you get redirected on the homepage. Maybe this is due to some hooks being moved or switched around – I know the skeleton component is showing it’s age but wondering if perhaps anyone can point me in the right direction. OR if anyone knows of a plugin that currently adds a menu choice under user settings.
I basically just want the notification to show an “button” instead of all the text. So if it’s a message it will have [1] <– The number only
I copied the function over and renamed it.
function bp_notifications_menu() {
global $bp;
if ( !is_user_logged_in() )
return false;
echo '<li id="bp-adminbar-notifications-menu"><a href="' . $bp->loggedin_user->domain . '">';
_e( '', 'buddypress' );
if ( $notifications = bp_core_get_notifications_for_user( $bp->loggedin_user->id ) ) { ?>
<span><?php echo count($notifications) ?></span>
<?php
}
echo '</a>';
echo '<ul>';
if ( $notifications ) { ?>
<?php $counter = 0; ?>
<?php for ( $i = 0; $i < count($notifications); $i++ ) { ?>
<?php $alt = ( 0 == $counter % 2 ) ? ' class="alt"' : ''; ?>
<li<?php echo $alt ?>><?php echo $notifications[$i] ?></li>
<?php $counter++; ?>
<?php } ?>
<?php } else { ?>
<li><a href="<?php echo $bp->loggedin_user->domain ?>"><?php _e( '', 'buddypress' ); ?></a></li>
<?php
}
echo '</ul>';
echo '</li>';
}
?>