Forum Replies Created
-
You might want to check out BuddyStream. It allows your users to send updates to Twitter. But if you want _all_ your activity tweeted you’ll have to do some tweaks.
Let me know.
There’s a plugin for creating sample users. I don’t have the URL to it but I’m sure if you search you will find it.
Yeah, it should be in the core.
It’s a pitty @modemlooper won’t be updating his plugins but I read what he said and I have to agree on several points.Thanks anyway.
@chrisclayton but what would be the point of hiding my activity if it would still be readable by someone I mention (asuming I don’t want him to see it).
The underlying problem here is that BP doesn’ have (and I couldn’t find any plugin) that will allow me to “block my profile” and allow access only to the people I choose (like Twitter does for instance)
Beware it will still appear on your HTML source. You’d have to remove it from member-header.php if you want it completely gone.
I get only one profile field, not one per field as I thought I’d get (one for Facebook, one for Twitter, etc)
+1. The new site is neat but can’t we switch back to the old site while the new one gets fixed ?
Bump
wp_redirect( $bp->loggedin_user->domain . ‘activity/friends’ );
?
Bump. I’m trying to add some styling to the error messages using jGrowl.
Bump
Bump
Hey, I came up with this solution.
I wanted to make “Following” the default activity sub_nav if I’m visiting my profile and “Personal” if I’m visiting someone elses’. On /plugins/buddypress/bp-activity/bp-activity-loader.php:
`
// Add ‘Activity’ to the main navigation
$main_nav = array(
‘name’ => __( ‘Activity’, ‘buddypress’ ),
‘slug’ => $this->slug,
‘position’ => 10,
‘screen_function’ => ‘bp_activity_screen_my_activity’,
‘item_css_id’ => $this->id,
‘default_subnav_slug’ => bp_is_my_profile() ? ‘following’ : ‘just-me’
);// Add the subnav items to the activity nav item if we are using a theme that supports this
$sub_nav[] = array(
‘name’ => __( ‘Personal’, ‘buddypress’ ),
‘slug’ => ‘just-me’,
‘parent_url’ => $activity_link,
‘parent_slug’ => $this->slug,
‘screen_function’ => ‘bp_activity_screen_my_activity’,
‘position’ => bp_is_my_profile() ? 29 : 10
);
`
Then change the ‘position’ => of “Mentions” and “Favorites” for values higher than 29 and lower than 40 (“Friends”)Hope it helps ! I’d like some feedback on this
Me too
@modemlooper on this subject. Is there anyway of generating a blank user profile when somebody mentions a @profile account containing the mentions ?
+1
Looking forward to it too !
Cool !
I’d like to know what activities the current user has created and which one are from others. I mean:
If the user mentioned another is what I call “created by the user” and if another user mentioned him is what I call “created from other”.
Thanks
I’m trying to get the usernames (@nicenames) of those who mentioned a user and those who were mentioned by the user. Is this possible ?
Bump. I’d like to know who mentioned me and whom I mentioned.
@pollyplummer Hi ! This looks great but unfortunately I’m not able to use it on my site. If the Friends component is disabled, the plugin will exit with errors of calling unregistered functions (which is logic). I tried to add some validations myself:“ but the site didn’t load, only the background. Could you take a look at this ?
Thanks !