Jump to content

Topic's Forum Title in Hover Over


AVSIM.com

Recommended Posts

I'm trying to edit the recent posts sidebar to include in the hover over "title" tag the forum in which the topic is posted.  In the example below, the Forum Title would replace the Topic Title in the "title=" tag.

 

{{if !empty( $topics ) }}
	<h3 class='ipsWidget_title ipsType_reset'>{$title}</h3>
		<div class='ipsWidget_inner latest_posts hot_spot'>
			<ul class='ipsDataList ipsDataList_reducedSpacing'>
				{{foreach $topics as $topic}}
					<li class='ipsDataItem{{if $topic->unread()}} ipsDataItem_unread{{endif}}{{if $topic->hidden()}} ipsModerated{{endif}}'>
						<div class='ipsDataItem_main'>
							<a href="{$topic->url()->setQueryString( 'do', 'getNewComment' )}" title='{lang="view_this_topic" sprintf="$topic->title"}' class='ipsDataItem_title ipsType_break'>{wordbreak="$topic->title"}</a>
						</div>
					</li>
				{{endforeach}}
			</ul>
		</div>
{{endif}}

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...