yes, there is a filter simple_history/log/do_log that you can use to control what is logged or not. see the examples file for example usage:
https://github.com/bonny/WordPress-Simple-History/blob/master/examples/examples.php#L49
Thanks, but would you be able to tell me what I should type in there to disable WordPress and plugin updates?
This link only shows Pages and Attachments but I don’t know what to replace it with.
This should work, just place it in functions.php or similar:
// No not log plugin updates or installations
add_filter('simple_history/log/do_log/SimplePluginLogger', '__return_false')
// No not log wordpress updates
add_filter('simple_history/log/do_log/SimpleCoreUpdatesLogger', '__return_false')
Hi, I ran this but it gave me an error
syntax error, unexpected ‘add_filter’ (T_STRING)
Ah, I missed to add semicolons. This should work:
// No not log plugin updates or installations
add_filter('simple_history/log/do_log/SimplePluginLogger', '__return_false');
// No not log wordpress updates
add_filter('simple_history/log/do_log/SimpleCoreUpdatesLogger', '__return_false');