Very satisfied with the plugin but it sends the admin stats every hour instead of daily. I've noticed a cron in functions.php that runs every hour.
if(erm_param('admin_pending_comment') == 1) {
erm_remind_admin_pending_comment($last_check);
}
if(erm_param('admin_stats') == 1) {
erm_send_reminder_emails_stats();
}
osc_set_preference('last_check', $now, 'plugin-reminder');
}
osc_add_hook('cron_hourly', 'erm_send_reminder_emails');
Do you think by changing it to this it will work and send daily stats?
if(erm_param('admin_pending_comment') == 1) {
erm_remind_admin_pending_comment($last_check);
}
osc_set_preference('last_check', $now, 'plugin-reminder');
}
osc_add_hook('cron_hourly', 'erm_send_reminder_emails');
if(erm_param('admin_stats') == 1) {
erm_send_reminder_emails_stats();
}
osc_add_hook('cron_daily', 'erm_send_reminder_emails');
Thanks