-
rich! @ etiviti posted on the forum topic Why Does Group Count Not Go Down When You Delete Group in the group How-To and Troubleshooting: 15 years, 2 months ago
running any cache plugins?
groups_get_total_group_count() is wp_cache and is removed on the action groups_group_deleted
as for deleting a group and the associated bbPress table – correct, currently BuddyPress does not remove it from the bb_forums table (or even removing other data – topics, etc – https://trac.buddypress.org/ticket/2613 )
-
rich! @ etiviti posted on the forum topic Permalinks – Members/Profile pages redirect to homepage in the group How-To and Troubleshooting: 15 years, 2 months ago
alright!
@djpaul 😛
-
rich! @ etiviti posted on the forum topic Permalinks – Members/Profile pages redirect to homepage in the group How-To and Troubleshooting: 15 years, 2 months ago
bp_core_set_uri_globals/catchuri and usernames have given me trouble in the past – maybe there is a seed/created userdata and redirecting on bad chars in the username?
-
rich! @ etiviti started the forum topic BuddyPress do_action and apply_filters hook reference db in the group Creating & Extending: 15 years, 2 months ago
had this sitting on the back burner for awhile; as I use it to cross reference all the lovely do_action triggers and apply_filters. a bit basic and rough but i uploaded a version to my test site for anyone else: http://etivite.com/groups/buddypress/hooks/ view all do_actions, apply_filters, by component, by file includes code snippet around each…[Read more]
-
rich! @ etiviti posted on the forum topic Permalinks – Members/Profile pages redirect to homepage in the group How-To and Troubleshooting: 15 years, 2 months ago
quick check… have you enabled BP_ENABLE_USERNAME_COMPATIBILITY_MODE ?
-
rich! @ etiviti posted a new activity comment 15 years, 2 months ago
the edit plugin actually piggybacks on that same filter
http://etivite.com/groups/buddypress/hooks/apply_filters/bp_activity_delete_link(so if you use it, just set the proper priority)
add_filter( 'bp_activity_delete_link', 'bp_edit_activity_add_edit_link', 1, 2 ); -
rich! @ etiviti posted an update 15 years, 2 months ago
@hnla fwiw – a work-in-progress buddypress hook/filter reference: http://etivite.com/groups/buddypress/hooks/ (maybe it will help folks when trying to find the best trigger and what component/file)
-
That is truly excellent, it’s going to be an invaluable reference. My next little task was going to be to try and remove the activity ‘delete’ link for all but site admins and this reference should make that a lot easier, actually was thinking of trying to hack your edit activity plugin as it seems the natural marriage of actions 🙂
-
the edit plugin actually piggybacks on that same filter
http://etivite.com/groups/buddypress/hooks/apply_filters/bp_activity_delete_link(so if you use it, just set the proper priority)
`add_filter( ‘bp_activity_delete_link’, ‘bp_edit_activity_add_edit_link’, 1, 2 );`-
That’s cool, was looking at that page , and will have a play around when I have a minute. Thanks for that rich
-
-
-
-
rich! @ etiviti posted on the forum topic Sitemap.xml for buddypress in the group Creating & Extending: 15 years, 2 months ago
https://wordpress.org/extend/plugins/buddypress-sitemap-generator/ (ignore some of the warnings in the dashboard – i haven’t updated it awhile but still works and waiting on bp 1.2.6 to do so.)
-
rich! @ etiviti posted on the forum topic Hide Friend and Group Counts in the group How-To and Troubleshooting: 15 years, 2 months ago
bp-default/members/index.phphasand so forth. this could be child via a child theme -
rich! @ etiviti posted on the forum topic Limit New Topics in the group How-To and Troubleshooting: 15 years, 2 months ago
sure but you will need to modify a few theme files and wrap the post forms with a check theme files contain the “Post a New Topic:” forms groups/single/forum.php forums/index.php then some check like so `if ( !bp_is_group() || ( bp_is_group() && ( is_site_admin() || groups_is_user_admin( bp_loggedin_user_id(), bp_get_group_id() ) ||…[Read more]
-
rich! @ etiviti posted on the forum topic bp_group_is_moderator in the group Creating & Extending: 15 years, 2 months ago
you mean
bp_group_is_mod()?also
groups_is_user_mod( $user_id, $group_id )
groups_is_user_admin( $user_id, $group_id ) -
rich! @ etiviti posted on the forum topic Forums Page not Working Properly in the group How-To and Troubleshooting: 15 years, 2 months ago
@per4mance – group forum extras only tested with bp-default theme, possible the theme you’re using does not include a proper filter where the css class needs to be injected.
sorry @hnla to go OT more 😛
-
rich! @ etiviti posted on the forum topic How to RegEx the output (stream/forum)? in the group Creating & Extending: 15 years, 2 months ago
you asked this question yesterday (why not just keep it to one thread)
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/search-and-replace-status-text-with-regular-expressions/you will need to use the hooks setup for buddypress or ask the author of that plugin to include the hooks. ie, the hook for the activity…[Read more]
-
rich! @ etiviti posted on the forum topic users editing their posts in the group How-To and Troubleshooting: 15 years, 2 months ago
allows editing top level status updates (not replies – think after 1.2.6 hits i can hook into a new filter)
https://wordpress.org/extend/plugins/buddypress-edit-activity-stream/
-
rich! @ etiviti posted on the forum topic Preventing activity stream updates when people join a bbpress group in the group How-To and Troubleshooting: 15 years, 2 months ago
via sql would be another way to remove them (besides manually each via buddypress frontend)
-
rich! @ etiviti posted on the forum topic Clarification needed on posting forum replies in the group How-To and Troubleshooting: 15 years, 2 months ago
as expected – you can disable activity commenting on forum topics/replies via wp-admin buddypress settings.
each forum topic/reply excerpt is logged in the activity stream linking back to the appropriate forum topic. the activity stream has a separate functionality for commenting as well.
-
rich! @ etiviti posted on the forum topic Post code between backticks in the group buddypress.org Ninjas: 15 years, 2 months ago
schweet!
-
rich! @ etiviti posted on the forum topic Preventing activity stream updates when people join a bbpress group in the group How-To and Troubleshooting: 15 years, 2 months ago
new ones only (and no way to recover future ones 😉 )
- Load More
@nuprn1
Not recently active
That’s cool, was looking at that page , and will have a play around when I have a minute. Thanks for that rich