Search Results for '@mention on profile'
-
AuthorSearch Results
-
March 7, 2011 at 7:30 pm #107101
In reply to: user_nicename in messaging
modemlooper
ModeratorDid you change the login name via a plugin or in the database? I’m looking at your site and the @mentions name in the usernav
is different –> @BNIWAdmin when the profile header says @stevieGMarch 2, 2011 at 3:22 am #106636In reply to: Only small letter in usename when register
Virtuali
ParticipantThey are not 2 different kinds of usernames.
The “username” is for the @mentions.
Then, additionally, there are “real names” or, “profile names” that are displayed across the site.
January 13, 2011 at 6:25 pm #102774@mercime
Participant=== the budypress.org site is not a clear representation of a budypress site : ===
http://testbp.org/ is a clear representation of a default install of BuddyPress as noted in Codex. And the wall/wire was in the core of BuddyPress plugin pre-BP 1.2 version. Don’t know why it was removed.
January 13, 2011 at 4:36 pm #102770hugo
Participantyes @mercime i understand that, but the point is not that it didn’t work with me at first, the point is why it is a feature here on the budypress site and not easily available on the core package/theme, so here they think its a good feature, but on all the other budypress sites its not, or if you want it, you have to hack it in to have something similar, doesn’t make sense… basically the budypress.org site is not a clear representation of a budypress site
January 11, 2011 at 6:22 am #102539January 10, 2011 at 10:36 pm #102518hugo
Participantwhy isnt this core? and i tried to use the tutorial and it was a big FAIL!
January 3, 2011 at 5:06 pm #101779efrik07
MemberGood! try and keep to lowercase syntax
Link removed – not sure the purpose of this link or the comment could you explain please @mention me on my profile – hnlaDecember 18, 2010 at 6:54 am #100875In reply to: Minor @mention admin flaw.
Virtuali
ParticipantNovember 23, 2010 at 6:10 am #98974nit3watch
Participantthanks Ill check it out
edit: Ta works great
November 22, 2010 at 11:38 pm #98941modemlooper
ModeratorIt’s custom and there was a tutorial awhile back that did something similar http://buddydev.com/buddypress/using-activity-as-wire-in-buddypress-1-2-themes/
October 30, 2010 at 2:20 pm #96994Boone Gorges
KeymasterHere’s how buddypress.org does it, with a filter that essentially adds a search term ‘ @username‘ to the bp_has_activities filter:
`function bporg_activity_with_others_filter( $qs ) {
global $bp;$user_id = ( bp_displayed_user_id() ) ? bp_displayed_user_id() : bp_loggedin_user_id();
/* Only filter on directory pages (no action) and the following scope on activity object. */
if ( ( ‘dashboard’ == $bp->current_action && strpos( $qs, ‘personal’ ) !== false ) || ‘just-me’ == $bp->current_action ) {
if ( strpos( $qs, ‘filter’ ) === false )
$qs .= ‘&search_terms=@’ . bp_core_get_username( $user_id ) . ‘<';return $qs;
} else {
return $qs;
}
}
add_filter( ‘bp_ajax_querystring’, ‘bporg_activity_with_others_filter’, 11 );`The problem with this approach is that the search bypasses the private/hidden group setting, so activity created inside of a group will show up on public profile pages if it contains @username in it. Here’s a filter that gets around it about halfway, in a hackish way:
`function bporg_ensure_hidden_activity_updates( $has_activities ) {
global $activities_template, $bp;if ( bp_is_my_profile() || !$bp->displayed_user->id )
return $has_activities;foreach( $activities_template->activities as $a_key => $a ) {
if ( $a->type != ‘activity_update’ && $a->type != ‘activity_comment’ )
continue;if ( $a->component != ‘groups’ )
continue;$group = new BP_Groups_Group( $a->item_id );
if ( $group->status != ‘public’ ) {
unset( $activities_template->activities[$a_key] );
$activities_template->total_activity_count = $activities_template->total_activity_count – 1;
$activities_template->activity_count = $activities_template->activity_count – 1;
}$activities_template->activities = array_values( $activities_template->activities );
}return $has_activities;
}
add_filter( ‘bp_has_activities’, ‘bporg_ensure_hidden_activity_updates’, 999 );`This latter problem should be fixed in BP 1.3.
September 30, 2010 at 1:43 am #93810In reply to: @mentions is confusing to members
r-a-y
KeymasterOkay, so I’ll probably create a plugin for this in the coming week or two. Please remind me if I don’t get to this!
@dougjoseph – Your ideas have been discussed before.
Read this blog post on BuddyDev.com to post on a user’s profile (mirroring the functionality of bp.org):
September 17, 2010 at 2:35 pm #92714In reply to: Feature Request – Profile Galleries?
Roger Coathup
ParticipantWith some template coding, you can enable writing on other people’s walls – it’s done on this site for instance… click through to any member, and you’ll see the post box at the top!
I haven’t looked in to the coding, but suspect it’s just a ‘simple’ case of hiding the @mention ‘behind’ the post form
August 19, 2010 at 5:25 am #89643In reply to: Singular Activity Stream
alanchrishughes
Participant@Modemlooper I guess that is what i was trying to ask, how would one go about adding things like @mentions to the default profile stream. I got that post to user’s wall thing going which is nice, but then it is directed to the @mentions tab still.
August 2, 2010 at 2:39 am #87710alanchrishughes
Participant@r-a-y actually I guess I mean without having to select between “Personal” “Friends” “Groups” “Favorites” “@mentions” I don’t know why I threw blog comments in there.
July 30, 2010 at 2:38 am #87447lu5dx
ParticipantWow! @mercime !!!!!!! Thanks so so much for your post. Heading to modify what’s necessary right now. Regards!
July 30, 2010 at 1:52 am #87439@mercime
ParticipantHere’s a tutorial to do that – http://buddydev.com/buddypress/using-activity-as-wire-in-buddypress-1-2-themes/
July 30, 2010 at 1:09 am #87429lu5dx
ParticipantI’d love to have that feature too! buddypress.org has that feature. Under each profile there is a form for us to post comments directly to friends. I’d like to be able to do that in my site.
Regards.
Martin
July 11, 2010 at 8:49 am #85125In reply to: How to filter extended profiles fields editings?
mvvspr
ParticipantIts better to notify using @mention feature.So that you will get your reply faster and also the notification goes to the user you intended to ask.Anyways I will do it for you.
@boonebgorges
hi, Boone Gorges,Thank u very much for the info. But I have to confess I’m very much a newbie to understand what I might have done. Would you mind please explain a bit more – maybe in a dummie way?
June 1, 2010 at 3:00 pm #80288In reply to: @mentions not working
rossagrant
ParticipantHey Simon,
Are you mentioning a user in a group forum?Someone can correct me if I am wrong but you won’t receive a notification email or note in the user bar if that is the case. You will only receive an email if someone users your username @mention in a status update that then hits the activity stream.
Click on settings in your BP profile and look at notifications. It will list everything you get an email for. @mentions in forums isn’t one. I imagine if it was your inbox would be full of messages if you participate in a busy forum.
Simply click on the @mentions link in your BP profile when you first login to get upto speed with @mentions.
As I say, I’m sure a mod will correct me if I am wrong but you don’t get an email or notification in each instance when using @mentions.
Hope this helps mate,
Ross
May 28, 2010 at 1:14 pm #79991rossagrant
ParticipantI can see the @ mentions when i click on the @mentions section in my profile but I don’t get a message in the notifications bar.
Could you @mention me on this site and I’ll see if it pops up on this site. On mine I don’t get one.
Cheers
Ross
May 15, 2010 at 9:58 am #78272dre1080
Memberim asking, how to add a post form when you go to a users profile…on buddypress.org you can go to another users profile and theres a post form, wen u write in that post form it automatically picks up the displayed user’s username and ur post will come out as an @mention..
May 14, 2010 at 7:32 pm #78200In reply to: @mentions is confusing to members
Creative Modules
MemberBasically I just want to be able to remove/hide the @mentions stuff so it doesn’t confuse my users. Maybe an option or a plug-in that turns this feature on/off. I just want to be able to mimic the public profile of facebook with “Wall, Profile, Pictures” etc…..Around 90% of my questions and complaints are stemming from the lack of understanding of the @mentions and the unwillingness of my community members to learn it. This feature is taking up to much of my time trying to train and educate them on this via support emails ect, so I would just like to be able to just turn it off if possible, yet I don’t want to mess with the core.
Btw….I personally understand and like the @mentions…..it’s just a huge training issue for me at this time until it’s been baked more.
Any suggestions?
May 9, 2010 at 1:26 am #77280rossagrant
ParticipantWhen someone uses the @username are you supposed to get a notification because you don’t. It says you do when you click on the ? next to the @username on someones profile but you only get it appearing under the @mentions. It would be good to get a notification wouldn’t it?
With regards to names, their should just be one username that is used for everything on the front end. The first and Last name is useful in the backend but out on the site just ONE global name is essential in my eyes!
March 18, 2010 at 3:39 am #68906In reply to: Profile Comments with BP 1.2
xspringe
ParticipantIt’s a shame that the core implementation in BP forces you to use a twitter like @mention system for leaving comments on other people’s profiles. It’s not very user friendly for this specific purpose. One of the main reasons so many people that use twitter rely on third party software (connected through the twitter API) is to make the @mention system more manageable and usable, yet BP has this system as the only available option (and without third party applications to make it more usable).
The current BP system doesn’t allow you to use the two most popular and common methods of commenting onto the profile of a user. One method is directly posting a comment into a user’s activity stream (e.g. like on facebook), the other method is leaving a comment at a specific separate section (usually at the bottom) of a user profile. By far the most social networks use either the facebook or myspace style method for commenting on user profiles, and as such this is what most people are most familiar with. It’s a shame that the twitter based @mention system, which is relatively unpopular and quite difficult to use for this specific purpose, is the only available option in BP core.
Who else thinks that it would be a good idea to at least have the option to opt for alternate type profile commenting as part of the BP core system?
-
AuthorSearch Results