Reply To: Question /wp-json/front-end-pm/v1/notification


Home Forums Front End PM PRO Question /wp-json/front-end-pm/v1/notification Reply To: Question /wp-json/front-end-pm/v1/notification

#27140
Shamim Hasan
Keymaster

Please 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 ){
    $interval = 5 * MINUTE_IN_SECONDS * 1000;
    return $interval;
});

You can change 5 to any number. It will call every after that many minutes.