-
rich! @ etiviti posted on the forum topic Member since in the group How-To and Troubleshooting: 15 years, 3 months ago
https://buddypress.org/community/groups/buddypress-member-profile-stats/ will display a member since (ie, nuprn1 has been a member for 3 months, 3 weeks. )
-
rich! @ etiviti posted on the forum topic Show Original Poster next to latest poster in Forum Listing in the group Third Party Components & Plugins: 15 years, 3 months ago
sure – just need to modify the forums/forum-loop template
the functions i use:
bp_the_topic_poster_avatar( ‘type=thumb&width=16&height=16’ )
bp_the_topic_poster_name()
bp_the_topic_time_since_created(); -
rich! @ etiviti posted on the forum topic customizing buddypress profile page default tab and item-nav order in the group How-To and Troubleshooting: 15 years, 4 months ago
correct behavior – the slug is used as the nav id
$bp->profile->slug = BP_XPROFILE_SLUG;
/* Add ‘Profile’ to the main navigation */
bp_core_new_nav_item( array( ‘name’ => __( ‘Profile’, ‘buddypress’ ), ‘slug’ => $bp->profile->slug, ‘position’ => 20, ‘screen_function’ => ‘xprofile_screen_display_profile’, ‘default_subnav_slug’ => ‘public’,…[Read more] -
rich! @ etiviti posted on the forum topic customizing buddypress profile page default tab and item-nav order in the group How-To and Troubleshooting: 15 years, 4 months ago
just tested and it works for me – but when copy/pasting from this site you get curly quotes, make sure to replace those.
-
rich! @ etiviti posted on the forum topic Dev looking for feature requests for next BP-Group-Control version in the group Creating & Extending: 15 years, 4 months ago
@sadr
https://wordpress.org/extend/plugins/buddypress-restrict-group-creation/ does this already.You can set whatever defined wp_cap/role levels assigned to:
Create group capability
Create group forum capability
Create private group capability
Create hidden group capability -
rich! @ etiviti posted on the forum topic Cannot post in forums in the group How-To and Troubleshooting: 15 years, 4 months ago
also check the site_option (in the db) “bb-config-location” and verify this is pointing to the correct bb-config.php file
-
rich! @ etiviti posted on the forum topic Working with Titles in the group How-To and Troubleshooting: 15 years, 4 months ago
have a look at the function bp_get_page_title() in bp-core-/bp-core-templatetags.php to see how the title is built. There is a filter which you can hook onto, albeit the page_title function is a bit lacking on certain pages.
or
create your own function (and just change your child theme header.php to the new)
-
rich! @ etiviti posted on the forum topic Footer plugins and widgets in the group How-To and Troubleshooting: 15 years, 4 months ago
depends on your theme – bp-default does not include a footer widget area
-
rich! @ etiviti posted on the forum topic members slug in the group Creating & Extending: 15 years, 4 months ago
if BP_ENABLE_ROOT_PROFILES is set then urls do not include the BP_MEMBERS_SLUG (ie, http://whatever.com/username )
function my_get_members_base()
global $bp;if ( !defined( ‘BP_ENABLE_ROOT_PROFILES’ ) )
$domain = $bp->root_domain . ‘/’ . BP_MEMBERS_SLUG . ‘/’;
else
$domain = $bp->root_domain . ‘/’;return $domain;
} -
rich! @ etiviti posted on the forum topic members slug in the group Creating & Extending: 15 years, 4 months ago
BP_MEMBERS_SLUGis a constant defined – so if bp is initialized you can use that.bp_core_get_user_domain( $user_id )will return the member’s url – e.g. http://domain.com/ BP_MEMBERS_SLUG / username / – (also ifBP_ENABLE_ROOT_PROFILESis used or not) -
rich! @ etiviti posted on the forum topic #hashtag search won't include activity replies in the group BuddyPress Activity Stream Hashtags: 15 years, 4 months ago
@paulhastings0 – updated the plugin to v0.3.1
there is a residual problem with using the filters (ie, Show Activity Updates) and search_terms as BuddyPress ignores searching the activity_comments type
-
rich! @ etiviti posted on the forum topic #hashtag search won't include activity replies in the group BuddyPress Activity Stream Hashtags: 15 years, 4 months ago
oh and thanks ray…. again. 😛
-
rich! @ etiviti posted on the forum topic #hashtag search won't include activity replies in the group BuddyPress Activity Stream Hashtags: 15 years, 4 months ago
i’m going to add that param to the plugin – makes sense to return all possible uses of a hashtag search
-
rich! @ etiviti posted on the forum topic #hashtag search won't include activity replies in the group BuddyPress Activity Stream Hashtags: 15 years, 4 months ago
i can’t view the video (no flash) – screenshot?
when viewing the tag page: (ie, http://etivite.com/activity/tag/hashtags ) activity reply comments show up – the tag page uses the template ‘activity/index’. does your theme remove threaded comments?
-
rich! @ etiviti posted on the forum topic New Plugin: Activity Stream #Hashtags in the group BuddyPress Activity Stream Hashtags: 15 years, 4 months ago
i went ahead and updated the repo with a per hastag feed and the title filter – i’ll have to look into an “all hashtag” feed when time permits
-
rich! @ etiviti posted on the forum topic remove paragraph markup from around status updates in the activity stream in the group How-To and Troubleshooting: 15 years, 4 months ago
works in the theme’s function.php file (also make sure you don’t have curly quotes – at least copying the above code resulted in)
-
rich! @ etiviti posted on the forum topic -1 error when attempting to add friend from member list. in the group How-To and Troubleshooting: 15 years, 4 months ago
Same issue if you disable all other plugins?
-
rich! @ etiviti posted on the forum topic Status Update & Blog Comments Only in Activity Stream in the group How-To and Troubleshooting: 15 years, 4 months ago
the activity type (or action when passing it into the loop) for blog comments is “new_blog_comment” so just comma delimit:
$query_string .= ‘&action=activity_update,new_blog_comment’;
-
rich! @ etiviti posted on the forum topic Add total group topics as total group members in the group How-To and Troubleshooting: 15 years, 4 months ago
Sorry, I was only posting the idea of what you can do, I don’t particularly have the time to code a solution. Though I do not recommend hacking the core files as there is a function to remove the subnav.
-
rich! @ etiviti posted on the forum topic I's all about colours & usability in the group Creating & Extending: 15 years, 4 months ago
there are a few filters on the css class used in various components – for example: (for activity streams)
http://etivite.com/groups/buddypress/forum/topic/quick-tip-highlight-friends-following-own-activity-stream-items/#topicyou could change up the logic to include the site admin or other various roles/caps
- Load More
@nuprn1
Not recently active