1

Topic: feature request: enable a tooltip for the "last post" column

Under the last post heading in the index, the title of the thread doesn't appear  but only the last poster and the time of the post. Is it possible to get the title of the thread as well? Perhaps as a tooltip so when a user hovers over the date of the most recent post the title of that forum/topic is displayed?

<a href="/post4.html" title="$post_title">Yesterday</a> by chovy

...something like that. I don't know if it's possible to hook it in with an extension, it should be rather easy as I'm guessing the post object is available given the date of the post is displayed.

I'd do it myself if I could get svn access and contribute back somehow.

Re: feature request: enable a tooltip for the "last post" column

Thanks for the nice idea. Perhaps, we will add this feature to the Forum core.

chovy wrote:

I don't know if it's possible to hook it in with an extension, it should be rather easy as I'm guessing the post object is available given the date of the post is displayed.

You need to use just two hooks:

  • "in_qr_get_cats_and_forums" - to fetch the topic subject

  • "in_normal_row_pre_display" -to replace the HTML code of the last post link with a new one.