Simple Machines Community Forum

Customizing SMF => Modifications and Packages => Topic started by: Doug Heffernan on March 04, 2018, 04:52:11 PM

Title: Today Registrations
Post by: Doug Heffernan on March 04, 2018, 04:52:11 PM
Link to Mod (https://custom.simplemachines.org/mods/index.php?mod=4171)

This mod adds all users who register at your forum for the day at the bottom of the forum index. There are no settings. Simply install it and you are good to go.
Title: Re: Today Registrations
Post by: -Rock Lee- on March 04, 2018, 07:14:31 PM
Together with the last ones connected, it would look very good: Tenth I leave the translation to Latin Spanish!

$txt['today_registrations'] = 'Registros de hoy';

Go to the spanish.latin version as spanish.latin-utf8...


Regards!
Title: Re: Today Registrations
Post by: Doug Heffernan on March 05, 2018, 05:51:55 AM
Thanks for the translation.
Title: Re: Today Registrations
Post by: Yarik1980 on November 10, 2018, 02:41:03 AM
Quote from: doug_ips on March 04, 2018, 04:52:11 PM
Link to Mod (https://custom.simplemachines.org/mods/index.php?mod=4171)

This mod adds all users who register at your forum for the day at the bottom of the forum index.
It displays the user for 24 hours instead of the current day
For output for the current day, it will be correct
array(
'date_registered' => time() - 86400,
)

change to
array(
'date_registered' => strtotime('today'),
)