Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Go to first post since last visit

Asked Modified Viewed 1,628 times
D
digifredje
D
  • Member, joined since
  • Contributed 77 posts on the community forums.
  • Started 21 threads in the forums
  • Started this discussions
asked
Member

A very common request from my users is to have the possibility to go the the first post in a thread since their last visit.

I created a little modification in the viewforum.php to get this working.
Users can click on the "newfolder" icon to go to their first post in a thread since their latest visit

Maybe an idea to add it to the phpfusion 7 core?

In "forum/viewforum.php"

Find:
echo "<td align='center' width='25' class='tbl2'>$folder</td>";


Replace by:
$resultlp = dbquery(
"SELECT MIN(post_id) as post_id
FROM ".DB_POSTS."
WHERE post_datestamp > '".$lastvisited."'
AND thread_id = '".$tdata['thread_id']."'"
);
$lpdata=dbarray($resultlp);
if ($lpdata['post_id'] != '')
{
echo "<td align='center' width='25' class='tbl2'><a href='viewthread.php?thread_id=".$tdata['thread_id']."&pid=".$lpdata['post_id']."#post_".$lpdata['post_id']."'>".$folder."</a></td>";
}
else   {
echo "<td align='center' width='25' class='tbl2'>$folder</td>";
}



Find:
echo "<td align='center' width='1%' class='tbl2' style='white-space:nowrap'>$folder</td>";


Replace by:
$resultlp = dbquery(
"SELECT MIN(post_id) as post_id
FROM ".DB_POSTS."
WHERE post_datestamp > '".$lastvisited."'
AND thread_id = '".$tdata['thread_id']."'"
);
$lpdata=dbarray($resultlp);
if ($lpdata['post_id'] != '')
{
echo "<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><a href='viewthread.php?thread_id=".$tdata['thread_id']."&pid=".$lpdata['post_id']."#post_".$lpdata['post_id']."'>".$folder."</a></td>";
}
else   {
echo "<td align='center' width='1%' class='tbl2' style='white-space:nowrap'>$folder</td>";
}
0 replies
There are no post found.

Labels

None yet

Statistics

  • Views 0 views
  • Posts 0 posts
  • Votes 0 votes
  • Topic users 1 member

1 participant

D
D
  • Member, joined since
  • Contributed 77 posts on the community forums.
  • Started 21 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet