-
rich! @ etiviti posted on the forum topic bp global function? in the group Creating & Extending: 15 years, 6 months ago
* bp_core_get_user_domain()
*
* Returns the domain for the passed user:
* e.g. http://domain.com/members/andy/ -
rich! @ etiviti posted on the forum topic Filtering activities by recorded date in the group How-To and Troubleshooting: 15 years, 6 months ago
i don’t believe so – (you can restrict one page, how many items, etc)
if you look at the Class BP_Activity_Activity and the get function – you can see what is being allowed.
-
rich! @ etiviti posted on the forum topic Space in username from WordPress in the group How-To and Troubleshooting: 15 years, 6 months ago
did you try enabling username compatibility mode?
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/characters-in-usernames-cause-strange-issues/ -
rich! @ etiviti posted on the forum topic Desired: Plugin for Admin Interface View / Edit of BuddyPress Registration Fields in the group Creating & Extending: 15 years, 6 months ago
not ideal… but may help for the time being (at least get to the buddypress profile page to perform the edits)
this will add a ‘view bp’ link to the buddypress profile when viewing the user list within the dashboard
http://blog.etiviti.com/2010/02/add-a-view-buddypress-profile-link-in-wp-admin-users/ -
rich! @ etiviti posted on the forum topic PLUGIN REQUEST: Forum Ads in the group Requests & Feedback: 15 years, 6 months ago
after the first post within a forum topic?
-
rich! @ etiviti posted on the forum topic Buddypress needs to STOP supporting bbPress in the group Requests & Feedback: 15 years, 6 months ago
-
rich! @ etiviti posted on the forum topic Making bp_has_activities() have a global scope in the group How-To and Troubleshooting: 15 years, 6 months ago
this is defined within the function, to pick up the profile of the user you are viewing…
/* User filtering */
if ( !empty( $bp->displayed_user->id ) )
$user_id = $bp->displayed_user->id;but the wp_parse_args call is after – so have you tried passing in user_id=false to the loop?
-
rich! @ etiviti posted on the forum topic Buddypress needs to STOP supporting bbPress in the group Requests & Feedback: 15 years, 6 months ago
@boonebgorges Let me read up on custom post types more, I haven’t given it much thought to be honest. A quick glance seems it seems BP activity stream took some steroids, had a fun night, and mated with WP posts. đ (even seems in a futuristic sense that the activity stream could utilize custom post types […]
-
rich! @ etiviti posted on the forum topic Buddypress needs to STOP supporting bbPress in the group Requests & Feedback: 15 years, 6 months ago
I think Buddypress need some kinds of forums for detailed discussions. I donât think it needs BBPress. The Activity Stream has nearly everything to replace BBPress. … Because it is all build with the Activity Stream technology users can reply from within the Activity Stream, have nested comments and all the great plugins that are […]
-
rich! @ etiviti posted on the forum topic de-activate username link in forums in the group How-To and Troubleshooting: 15 years, 6 months ago
correct, have a look at the function/filter bp_get_the_topic_last_poster_name (in bp-forums.templatetags.php)
return apply_filters( ‘bp_get_the_topic_last_poster_name’, ‘‘ . $forum_template->topic->topic_last_poster_nicename . ‘‘ );
*edit – annoying we can’t post code here…
-
rich! @ etiviti posted on the forum topic Friends empty after BuddyPress reinstall, but number of friends still shows in the group How-To and Troubleshooting: 15 years, 6 months ago
friend count is stored in the wp_usermeta table ‘total_friend_count’ so you may need to manually reset those there is a function friends_get_total_friend_count( $user_id = false ) { – maybe a quick loop over your user_id(s) to update the wp_usermeta table. Unless something already exists for a better recount (maybe a plugin idea) – for which […]
-
rich! @ etiviti posted on the forum topic How to make forum posts appear when groups are set as private in the group How-To and Troubleshooting: 15 years, 6 months ago
Might be sad if I don’t remember what my own plugin does but I have something called Group Forum Extras – which contains some functions to pull out an index of forums. But I believe I coded the sql statement only to pull out the private forums if the user is logged in and a […]
-
rich! @ etiviti posted on the forum topic Problem with the View link on the activity stream -default theme in the group How-To and Troubleshooting: 15 years, 6 months ago
correct, there are instances where it loads in the members/single/activity/permalink
the function bp_activity_screen_single_activity_permalink() calls this but you can override the template call in this filter:
apply_filters( ‘bp_activity_template_profile_activity_permalink’, ‘members/single/activity/permalink’ )
-
rich! @ etiviti posted on the forum topic Bit of help needed after reversing forum posts order. in the group How-To and Troubleshooting: 15 years, 6 months ago
where bp_the_topic_post_admin_links is echo’d?
have a look in function bp_get_the_topic_post_admin_links( $args = ” ) { (bp-forums-templatetags.php)
-
rich! @ etiviti posted on the forum topic How to get group id while in activity-loop.php in the group How-To and Troubleshooting: 15 years, 6 months ago
$bp->groups->current_group->id would be the actual group_id for the group you are viewing (within the group component)
Now if you needed the group_id from an activity record, then the item_id contains the group_id (whereas the component is $bp->group->id )
-
rich! @ etiviti posted on the forum topic Here come the spammers!!! in the group Requests & Feedback: 15 years, 6 months ago
interesting:
2) How do spammers find BP communities? Using Google. Example: http://www.google.ca/search?hl=en&q=%2Bâis+proudly+powered+by+WordPress+and+BuddyPressâ; (front page of every BP site on the net) Example: http://www.google.ca/search?hl=en&q=inurl:%22/community/members/%22+%2Bbuddypress (members page of every BP site on the net)
I hav…
-
rich! @ etiviti posted on the forum topic @mentions is confusing to members in the group How-To and Troubleshooting: 15 years, 6 months ago
what i posted above – just remove the subnav on the activity component and all the filters so it doesn’t autolink and kick off emails.
-
rich! @ etiviti posted on the forum topic @mentions is confusing to members in the group How-To and Troubleshooting: 15 years, 6 months ago
as in the autolinking and email notification during an activity update? You’ll need to remove all the filter hooks and the subnav for the mentions tab.
bunch of filters on bp_activity_at_name_filter, bp_activity_at_message_notification, groups_at_message_notification
bp_core_remove_subnav_item($bp->activity->slug, ‘mentions’)
(though i’m not if…[Read more]
-
rich! @ etiviti posted an update 15 years, 6 months ago
I think next week will be dedicated to all things buddypress – this week was manual labor, my body needs a break đ
- Load More
@nuprn1
Not recently active