Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '@mention on profile'

Viewing 25 results - 76 through 100 (of 129 total)
  • Author
    Search Results
  • Michael Eisenwasser
    Participant

    You might want to try the BuddyBoss theme at http://www.buddyboss.com. It has a built in Wall on user profiles. Images and video can be added via oEmbed for BuddyPress, and the wall functions like a true Facebook wall in terms of how the conversation flows. It converts @mentions into wall posts so the BP Gallery plugin could potentially be integrated if you know what you’re doing.

    bgrun80
    Participant

    Hi,

    Could someone please help me, and give me advice on how to validate someone’s age at signup.

    I added an extra profile field which is a datebox, but the code is really hard for me to understand.

    Please @mention me when you reply.

    Many thanks,

    Ben

    msullens88
    Member

    @embergermedia

    This is how I got the mentions in the profile activity feed.

    Edit the file bp-activity-classes.php in the buddypress plugin folder.

    `function get_filter_sql( $filter_array ) {
    global $wpdb;

    if ( !empty( $filter_array ) ) {
    $user_filter = explode( ‘,’, $filter_array );
    $user_sql = ” ( a.user_id IN ( ” . $filter_array . ” ) “;
    foreach ( $user_filter as $user_id ) {
    $search_terms = ‘@’ . bp_core_get_username( $user_id ) . ‘<';
    $user_sql .= “OR ( a.content LIKE ‘%%”.like_escape($search_terms).”%%’ ) “;
    }
    $user_sql .= ” ) “;
    $filter_sql[] = $user_sql;
    }`

    and replace this first top half of the function, No need to edit past the first “if” part of that function.

    Hope this helps!

    @msullens88 How did you combine @mentions, status updates, photos from bp-gallery into one activity feed? I have been looking for the answer to this for weeks. I have an activity feed on a users profile, but can’t get @mentions to show.

    Your help would be greatly appreciated!

    Thanks

    -Paul

    msullens88
    Member

    Ok, so this has turned into a two part question.

    1. In my users activity feed (modified to show both @mentions, status updates, photos from bp-gallery etc) it shows guest posts as follows “ @marty hey hows it going” — My Goal is to elinimate the @username and I’ve successfully done this with css by adding “Display: none;” on my “div.activity_data p a:first-child” style selector.

    As you can see this has obvious flaws, it hides any first link in the activity feed data, and its hiding my 1st photo on activity updates made by BP-Gallery.

    So, what I am trying to do, is add a (id=”remove_mention”) to the link that is generated by buddypress for the @mention so I can hide it.

    The closest thing I could find was in (bp-activitybp-activity-filters.php) but had no luck modifying it to include this “id=remove_mention” I could only get it to add the id to all posts.

    2. I have the post-form.php working correctly on profiles that are not the logged in users and am able to leave @mentions but having to manually type in the @mention before the message then post.

    I would like to include the displayed users mention id to the forms data before being posted, (e.g what I’m doing now “ @marty hey hows it going?” would like to type “hey hows it going” and have the @marty attached before posting much like on this site here.

    Any help would be greatly appreciated, these are the last two major things I need to overcome before finishing up this site.

    #108146
    Virtuali
    Participant

    @mercime, it’s because the @mention was after the excerpt on the profile activity stream. It’s weird.

    Notice how our posts are somewhat indented?

    msullens88
    Member

    I’m currently working on a social networking site and I’ve got almost everything working except for the profile activity feeds that display mentions / comments.

    The activity feeds are working and are showing status updates, group posts, etc. but I need there “Friends” to be able to come to a profile and Submit a comment that shows up on there “Wall” I guess we will call it.

    I know this mimics Facebook’s wall, but its just the least confusing way for the users.

    I’ve tried – http://buddydev.com/buddypress/using-activity-as-wire-in-buddypress-1-2-themes/ and Bp-Wire but they are just not doing what I want.

    Is there anyway for a user to come leave a comment, it show up on that users wall, and they can then reply to that comment and vice versa.

    Please any help would be greatly appricated, I see that this site does something simular, but still includes the @mention tag, How can I get that to work on my page minus the @mention before the post.

    #107101
    modemlooper
    Moderator

    Did 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 @stevieG

    #106636
    Virtuali
    Participant

    They 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.

    #19644

    Topic: My 2 Cents

    in group forum Requests & Feedback
    alanchrishughes
    Participant

    1. Remove the top navigation bar from the wp_footer(); because if you don’t want that navigation bar you have to either hack the Buddypress plugin or remove the wp_footer(); and from what I understand both can lead to a lot of problems.

    2. Consolidate all the style sheets. I know the template pack is pretty cool, but it is still a jumbled mess of CSS and stuff going on outside of your actual style sheet which will require more hacking files programmers would probably freak out to hear people are editing. Plus I read somewhere once that it is out of date….?

    3. A notifications page. A notifications page and system that also notifies you when someone replies to a comment you have made.

    4. Others may like the page layout/system for activity, but I think it could be much more simplified. A profile page with your profile information, your activity, your @mentions, and a form to post directly on their wall, basically just like Facebook but including the Twitter @. Then a logged in home page with all the activity of your friends.

    I know some of this is possible already, but like with the CSS problem, all of the activity files are slurred together and I haven’t successfully been able to sort out what is what.

    @mercime
    Keymaster

    === 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.

    hugo
    Participant

    yes @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 :

    @mercime
    Keymaster

    fanvid, You could always ask for assistance / leave comment at @sbrajesh site

    hugo
    Participant

    why isnt this core? and i tried to use the tutorial and it was a big FAIL!

    Hi, I´m new to BuddyPress (not so much to WordPress) and I´m having a bit of trouble getting it to work as expected.

    Let´s go to the details…
    I´ve setup two different installations of WP(Multisite) + BP in two different servers.
    in both cases I get everything running with the exception of:
    — @mention email notification
    — friend request email notification
    — reply email notification
    strangely enough
    — private messages
    — new user regisistration
    — new user activation key
    get through and send the right emails

    just for the record
    Every user/profile used for testing purposes had a valid email address and all the notification emails checked in each profile configuration
    WP(multisite) 3.0.4 with a single site for now and followed the installation guide
    BP 1.2.7
    No other plugin installed or runing
    As I´ve said some Emails do go out (It´s not an email server problem) and just in case I´ve made some tests configuring SMTP but got just the same results.

    BuddyPress is a great application and seems to work lovely with WP.
    Is there a way to fix this problem and get those emails out?
    That would be fantastic.

    Please let me know of any possible tweak, tip, trick, hook or whatever may do the magic :)

    Thanks in advance,

    Andrés

    efrik07
    Member

    Good! 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 – hnla

    #100875
    Virtuali
    Participant

    What I am talking about is the administrator account. The mention identifier is “ @admin” Right next to name,

    My admin account username for wordpress is different, therefore the mention not being correct as “ @admin“, as it shows on my profile.

    Does this make sense?

    #17383
    Virtuali
    Participant

    @r-a-y, or any other, I noticed there is a slight flaw in buddypress, for future versions.

    When the admin account is created for buddypress, the @mention is “ @admin“. Well @admin does not mention the administrator, because the username of the admin account is different than “ @admin” when creating wordpress, so when any user is mentioning admin, it is different than what it says on the profile.

    Example, says “ @admin” on profile, but actual @admin mention does not work unless it is @gunju2221, the account username I have for wordpress.

    #98974
    nit3watch
    Participant

    thanks Ill check it out

    edit: Ta works great

    #98941
    modemlooper
    Moderator

    It’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/

    nit3watch
    Participant

    I would like to add the same @ user ‘functionality’ used on buddypress.org and cant seem to find this elsewhere. Could I get hold of the form please?

    Image and video hosting by TinyPic

    #16628
    justbishop
    Member

    So, some of you may remember me (or not, that’s fine too) from my BP project ClothUnderground.com, a venue for WAHM vendors to set up shop and sell their handmade goods…well, it flopped.

    However, being the trooper that I am, I have recently decided to have another go at this. I enlisted the brutally honest criticism of both demographics I was after in the first place, WAHM crafters and those who buy their wares, and the results have not been very surprising.

    The first thing that was mentioned (and not so gently, may I add) was that the site’s name was too exclusive. I tend to run in the online cloth diapering Mom/natural parenting circle, and chose “Cloth Underground” as a way to give those of us in that circle with pierced faces and tattoos a place to feel at home. My first stroke of genius was “ClothMafia.com” (which I do own, lol), but was warned that some might not like the connotation of the word “mafia”. Shortly after, I found out about CraftMafia.com, though and was glad I hadn’t gone in a similar direction. The “underground” part also seemed to be an issue, simply because it wasn’t descriptive enough of shopping OR crafting community. Anyway, The first order of business with the rebirth of this project was a new name. I wracked my brain for several days for something that held onto the “underground” spirit, but was more indicative of what the site was all about, and “RiotCart.com” hit me like a ton of bricks in the shower the other day. “Riot” gives it that spirit of rebellion and non-conformism, and “cart” is a common word in the community that I’m targeting (competitor’s sites: HyenaCart.com, CongoCart.com), so it ended up being perfect, IMO :)

    The number one complaint about the site setup was that everyone was confused by the main site newsfeed and groups feature. Most have told me that they found themselves overwhelmed just looking at the home page (I had my main site newsfeed set up there) and left. One even told me that she felt as if she were intruding on others’ conversations, and it turned her off. As for the groups, I think that the vocabulary bears a bit of the blame, but mainly, there are already several other large, busy, dedicated forums for those that my site was targeting, so I simply disabled the feature altogether (except for one private group forum for my vendors to share tricks and ask questions away from prying eyes, but that’s beside the point).

    The second biggest complaint was that there was too much focus being put on the community aspect of the site, and not nearly enough on the reason we were all there..shopping! In response, there is no longer a main site newsfeed linked to anywhere on the site. The only newsfeed that members have easy access to are those available in the “activity” sub items on their profile (personal, friends, groups (how do I get rid of that?), favorites, and @mentions). I’ve also linked the logged in member’s name in the sidebar directly to their “friends” feed, which seemed like a more natural landing spot than a list of what the member has posted herself.

    As for the shopping side of things, I already had a good working sitewide post aggregation system going on using Donncha’s Sitewide Tags plugin, so I actually just incorporated that into the main site and onto the front page, rather than having it relegated to it’s own child blog. The main site index page now consists of a “features” module, where I’ll be posting about cool things our vendors are doing, giveaways, etc., a site news module, and below all of that, the very latest items that vendors have posted to their shops (currently set to 5, but will increase at some point). Since I incorporated the Sitewide Tags blog into the main site, I ended up deciding to create a new custom post type for site news, with categories “news” and “features”, so as not to muddy the waters too terribly. I’ve also installed the WPMU Blog Topics plugin, which will give shoppers yet another way to find what they’re looking for, as shop (child blog) owners will now have a way to categorize their entire shop into topics that I’ve pre-set, which will be great once we get the vendors signing up again.

    Incredible feats (at least to me) that have not changed from the old site:

    1. Member profile feedback system
    2. Original shop (child blog) usage tutorials

    Anyway, I’d love for anyone who’s willing to check it out! It’s still very much a WIP and not ready for relaunch yet, but I really feel like I’m headed in the right direction this time. I do have a wealth of suggestions already from the vendors and shoppers that I’m catering to, but I’d definitely welcome the same from those of you here, who are probably a lot more technical minded (I especially need help with the sidebar…I’m drawing a total blank on what to do with that ugly thing!) Balance is nice :)

    http://www.riotcart.com

    Qsa
    Member

    Smiple question, how can i merge personal activiy and @metions on a user profile to a single “facebook like wall”

    Boone Gorges
    Keymaster

    Here’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.

    BionicClick
    Member

    Hello,

    On my buddypress install on the users profile at the top there is a colored box that displays the @mention name of the user. In this colored box there is a darker question mark, that when clicked has a JavaScript action that pops-down a box with an explanation as to what the @mention is…

    This box dynamically displays the user name of the person in reference to…

    HOWEEVER


    IF the display name field of the user starts with { or has a } in it…. it only displays up to the “}” and nothing more. Is this a bug?

    Everyone on my site that does not use the “{” or “}” in their displayed name displays just fine.

    [LINK TO MY SITE] – http://oldfartsinc.com

    Any assistance on this will be greatly appreciated.

Viewing 25 results - 76 through 100 (of 129 total)
Skip to toolbar