Quote:
Originally Posted by staff80
hi, i've installed this mod but registered users reset at 12 pm. I want it to reset at 00 am. What can i do about it?
|
i think i am very lucky coz i solved problem without any php knowledge.
Here it is for who has same problem.
Edit Plugin > Users Registered Today
Find >
$cutoff = mktime(
0, 0, 0, date('m', $now), date('d', $now), date('Y', $now));
Change the first zero to whatever you want. For example, in my forum, registered users was reset on afternoon 12:00. And i set it to:
$cutoff = mktime(
-12, 0, 0, date('m', $now), date('d', $now), date('Y', $now));
and it is now reset 12 hours before old reset time, so on 00 am as i want.
NOTE:I did it and my problem has been solved, i don't have any php knowledge, so use it at your own risk.