boonebgorges / buddypress-docs

GNU General Public License v3.0
106 stars 44 forks source link

It should be possible to disable 'bp_doc_edited' activity items #737

Closed boonebgorges closed 6 months ago

boonebgorges commented 7 months ago

As noted in https://wordpress.org/support/topic/activity-feed-settings/, 'bp_doc_edited' can result in a flood of activity items. For the time being, let's put a filter in place that allows them to be suppressed.

boonebgorges commented 7 months ago

I've added a new filter bp_docs_create_activity that one can use for this purpose. Use:

add_filter(
  'bp_docs_create_activity',
  function( $create, $args ) {
    if ( 'bp_doc_edited' === $args['type'] ) {
      return false;
    }

    return $create;
  },
  10,
  2
);