I was wondering how can I add date registered on post? There was a mod but it's out of date. So I was wondering if I could edit instead
How to add a registered date or join date, right?
1. Open Display.template.php file on your theme directory
2. Fine this line
// Show how many posts they have made.
3. Add this code on the code above:
if ($message['member']['registered'] != '')
echo 'Registered Date: ', strftime('%b %Y', $message['member']['registered_timestamp']), '<br />';
So, we have the new code like this:
if ($message['member']['registered'] != '')
echo 'Registered Date: ', strftime('%b %Y', $message['member']['registered_timestamp']), '<br />';
// Show how many posts they have made.
4. Save
This is just a sample.
NB: it use Join Date: instead of Registered Date:
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi50.tinypic.com%2F302z78k.png&hash=bf1a8140325f00c6db90442d79cedb418d1830cc)
The tutorial is taken from http://idsmf.com/index.php/topic,4.0.html
Do you require any further assistance with this?