• Good morning, thanks for developing this nice easy to use plug-in but I am wondering if it is possible to have a RSS feed from only the page / posts changes made by someone.
    That would be fantastic.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Damiaan,

    You can add a custom filter function like this:

    add_filter('simple_history/simple_logger/log_message_key', function ($doLog, $loggerSlug, $messageKey, $SimpleLoggerLogLevelsLevel, $context) {
    	
    	$test_array = array("SimplePostLogger", "SimpleCategoriesLogger", "SimpleMenuLogger");
    	if(!in_array($loggerSlug, $test_array)){
    		$doLog = false;
    	}
    
        return $doLog;
    }, 10, 5);

    Please note that the test array contains functions you need to log. You can get these functions from Simple History settings page, “Debug” tab.

    Hope that helps.!

    Thread Starter Damiaan van Vliet

    (@damnsharp)

    Thanks @nehagrover027 for your help! I will try this ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Only page posts changes’ is closed to new replies.