Timeline refers to gallery name, not item
Using Jamroom
Yeah forums can be a bit fiddley because of the all the info. Important things about forum posts is they will all have a 'forum_group_id' on every post which will be the ID of the initial post in the thread which will contain the title of the discussion.
So as usual...... there are a number of ways to do it. The first 2 that jump into my head are:
#1 use a {jrCore_list module="jrForum" search1=""}
(change of mind)#1 use
{jrCore_db_get_item module="jrForum" item_id=$item.forum_group_id assign="info"}That should bring in the forum post for the first item in the forum, then you can use its title from the $info variable, so
That would be one way to do it,
#2) another would be to define your own smarty function:
Docs: "Defining your own SMARTY function"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1569/defining-your-own-smarty-function
so you pass in the forum_group_id and get back the same info. Its basically the same as what is happening above, but doing it this way makes more sense when there are a ton more steps that need doing. In this case probably #1 is easiest as it doesnt require an extra module to be built.