How Many Minutes and Hours Past Since Last Post or Thread. - Printable Version +- MyBB Codes (http://www.mybbcodes.com) +-- Forum: Mods Database (/forumdisplay.php?fid=4) +--- Forum: Tutorials for 1.4.x (/forumdisplay.php?fid=29) +--- Thread: How Many Minutes and Hours Past Since Last Post or Thread. (/showthread.php?tid=205) |
How Many Minutes and Hours Past Since Last Post or Thread. - ghazal - 09-01-2009 09:32 PM Name: How Many Minutes and Hours Past Since Last Post or Thread. Description: It will show that how many minutes or hours OR both past since there was a post or thread was made. The result will be shown on Index.php file (i.e. homepage) and Forumdisplay.php file. Coding: So lets start coding. Open inc/functions.php Add following code to the bottom of this file before ?> . PHP Code:[Highlight] /** and save the file, Now open .inc/functions_forumlist.php and about 1/3rd of its bottom, find this code. PHP Code:[Highlight] $lastpost_date = my_date($mybb->settings['dateformat'], FOUND... ! okay, Just replace it with the following, PHP Code:[Highlight] $lastpost_time = timeAgo($lastpost_data['lastpost']); and save the file, Now open forumdisplay.php and about 1/3rd to its bottom, find the following code, PHP Code:[Highlight] $lastpostdate = my_date($mybb->settings['dateformat'], $thread['lastpost']); FOUND... ??? Okays, lets replace it with the following code, PHP Code:[Highlight] $lastposttime = timeAgo($thread['lastpost']); and save the file, Now go to .inc/languages/english/ and open global.lang.php file and add the following code before ?> PHP Code:[Highlight] $l['df_ago'] = "Ago"; FINISHED. . . ! Now refresh your index (homepage) , It should look like this, SCREENSHOT: [attachment=158] Now open Your forumdisplay.php , It should look like this, SCREENSHOT: [attachment=157] Cool... ENJOY. RE: How Many Minutes and Hours Past Since Last Post or Thread. - Hero - 09-27-2009 09:32 AM Thank you for this wonderful tip. I may use it someday. RE: How Many Minutes and Hours Past Since Last Post or Thread. - ghazal - 09-29-2009 04:01 AM (09-27-2009 09:32 AM)Hero Wrote: Thank you for this wonderful tip. I may use it someday. Yours welcome RE: How Many Minutes and Hours Past Since Last Post or Thread. - Chandy - 03-19-2010 01:59 AM Yah another nice tutorial RE: How Many Minutes and Hours Past Since Last Post or Thread. - Ansar Bajwa - 09-20-2010 06:18 AM very good tutorial. |