add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_ajax_notification_interval', function( $interval ){
return 2 * MINUTE_IN_SECONDS * 1000;
});
This will make request every after 2 minutes. You can change 2 to anything you want.