Home › Forums › Front End PM PRO › Admin-ajax requests › Reply To: Admin-ajax requests
February 25, 2019 at 12:04 pm
#22036
Shamim Hasan
Keymaster
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.