View Full Version : Show Image Notification If Post Under May 2012
v123shine
11-29-2012, 02:04 PM
I have a site for buy and sell product. I want all user know if the post more than six month.
Can someone help me to create a simple plugin to display image notification if first post more than six month or less than"May 2012".
Simon Lloyd
11-29-2012, 04:12 PM
Yep, create a plugin using postbit_display_complete as the hook and drop this inif ($post['postid']==$this->thread['firstpostid'])
{
if(strtotime($post['postdate'])<strtotime('-180 days')){
$post['message']= $post['message']."<br /><img src='images/misc/MyGif.gif' border='0' />";
}
}
--------------- Added 1354209585 at 1354209585 ---------------
Changed text for image in the above :)
v123shine
11-30-2012, 01:47 PM
Thank you so much Simon Lloyd for your help :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.