-
bp-help replied to the topic [Resolved] I do not get my @mentions here on buddypress.org in the forum Installing BuddyPress 11 years, 7 months ago
If anyone that is not a moderator please mention me @bphelp to see if this working. I appreciate it!
-
bp-help replied to the topic BuddyCamp Miami, 2013 in the forum Miscellaneous 11 years, 7 months ago
🙂 I still should have payed more attention to detail because he did mention it before. Thanks Hugo!
-
bp-help replied to the topic [Resolved] I do not get my @mentions here on buddypress.org in the forum Installing BuddyPress 11 years, 7 months ago
Yes sir, but I always got the notifications from moderators but when someone I am helping in a topic that is not a moderator then I would not get the notification.
-
bp-help replied to the topic [Resolved] I do not get my @mentions here on buddypress.org in the forum Installing BuddyPress 11 years, 7 months ago
@hnla I changed it from bphelp to bp-help will this suffice?
-
bp-help started the topic [Resolved] I do not get my @mentions here on buddypress.org in the forum Installing BuddyPress 11 years, 7 months ago
-
bp-help replied to the topic [Resolved] How to add images to a custom toolbar? in the forum Installing BuddyPress 11 years, 8 months ago
@hnla I finally got the images right! Thanks for your help! Here is what I added to the above code.
'title' => __('<img src="' . plugins_url( '_inc/images/messages.png' , __FILE__ ) . '"> '),
Just change the messages.png to the others like friends.png, and notifications.png.
Works like a charm! Thank you!
Now I just need to figure out how to…[Read more] -
bp-help replied to the topic [Resolved] How to add images to a custom toolbar? in the forum Installing BuddyPress 11 years, 8 months ago
I made some changes now all the icons link to the pages but I need help to show the drop down menu for each individual notification. Here is what I have so far and I really am not certain of the id of each type of notification! Thanks in advance!
function custom_toolbar($wp_toolbar) {
global $wp_admin_bar;if ( is_user_logged_in() )…[Read more]
-
bp-help replied to the topic [Resolved] How to add images to a custom toolbar? in the forum Installing BuddyPress 11 years, 8 months ago
This is the code I have and the images are now visible but the links for friend-requests and messages doesn’t work. I am not sure of the id or href. Can someone please help me out on this code? Thank you everyone! 🙂
[Read more]
$wp_toolbar->add_node(array(
'id' => 'bp-notifications',
'title' => __('<img… -
bp-help started the topic [Resolved] Where is activity stream privacy? in the forum Installing BuddyPress 11 years, 8 months ago
Buddypress’s should work like facebooks but doesn’t so why is that such a hard feature to get? You finally got profile privacy right, so why not activity privacy?
-
bp-help replied to the topic Create a menu item to the current user's profile in the forum How-to & Troubleshooting 11 years, 8 months ago
You can add this code to bp-custom.php
Snippet courtesy of @mercime
[Read more]
// Filter wp_nav_menu() to add profile link
add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' );
function my_nav_menu_profile_link($menu) {
if (!is_user_logged_in())
return $menu;
else
$profilelink = '<li><a href="' . bp_loggedin_user_domain( '/' ) . '"…
@bphelp
Active 9 years, 1 month ago