MyBB Community Forums

Full Version: Thread Links of My Forum Missed
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello;

Today users of my forum reported me that when they click on thread title, thread is not opened. If they use any other option like Last Post, or page number or Find All Posts in user profile page the links are ok
It seems that link is missing in thread titles:

<span><div align="left" dir="ltr"><a href="" class=" subject_old" id="tid_25928">Report Any Bug here</div></a><!-- start: forumdisplay_thread_multipage -->

can you help me to fix it?
Open up your forum so I can see it Toungue
theme may be changed / re-uploaded for a quick fix !!
if the current theme is required then someone experienced should check the templates ...
forum now open.
I did some major changes on template and I need it Sad
its just forumdisplay_thread issue, can you post ithere
(2011-12-02, 06:04 PM)mohdows Wrote: [ -> ]its just forumdisplay_thread issue, can you post ithere

Here:

<tr>
	<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%"><img src="{$theme['imgdir']}/{$folder}.gif" alt="{$folder_label}" title="{$folder_label}" /></td>
	
	<td class="{$bgcolor}{$thread_type_class}">
		{$attachment_count}
		<div>
			<span>{$rtlfo}{$prefix} {$gotounread}{$thread['threadprefix']}<a href="{$thread['tlink']}" class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}">{$stprf}{$clprf}{$clclr}{$stclr}{$str1}{$thread['subject']}{$rtlfc}{$str2}{$stimg}{$clclr2}{$stclr2}{$climg}</a>{$thread['multipage']}</span>
			<div class="author smalltext">{$rtlfo}{$thread['profilelink']}{$rtlfc}</div>
		</div>
	</td>
	<td align="center" class="{$bgcolor}{$thread_type_class}"><a href="javascript:MyBB.whoPosted({$thread['tid']});">{$thread['replies']}</a>{$unapproved_posts}</td>
	<td align="center" class="{$bgcolor}{$thread_type_class}">{$thread['views']}</td>
	{$rating}
	<td class="{$bgcolor}{$thread_type_class}" style="white-space: nowrap; text-align: right;">
		<span class="lastpost smalltext">{$lastpostdate} {$lastposttime}<br />
		<a href="{$thread['lastpostlink']}">{$lang->lastpost}</a>: {$lastposterlink}</span>
	</td>
{$modbit}
</tr>

replace it with this code
<tr>
	<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%"><img src="{$theme['imgdir']}/{$folder}.gif" alt="{$folder_label}" title="{$folder_label}" /></td>
	<td align="center" class="{$bgcolor}{$thread_type_class}" width="2%">{$icon}</td>
	<td class="{$bgcolor}{$thread_type_class}">
		{$attachment_count}
		<div>
			<span>{$prefix} {$gotounread}{$thread['threadprefix']}<a href="{$thread['threadlink']}" class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}">{$thread['subject']}</a>{$thread['multipage']}</span>
			<div class="author smalltext">{$thread['profilelink']}</div>
		</div>
	</td>
	<td align="center" class="{$bgcolor}{$thread_type_class}"><a href="javascript:MyBB.whoPosted({$thread['tid']});">{$thread['replies']}</a>{$unapproved_posts}</td>
	<td align="center" class="{$bgcolor}{$thread_type_class}">{$thread['views']}</td>
	{$rating}
	<td class="{$bgcolor}{$thread_type_class}" style="white-space: nowrap; text-align: right;">
		<span class="lastpost smalltext">{$lastpostdate} {$lastposttime}<br />
		<a href="{$thread['lastpostlink']}">{$lang->lastpost}</a>: {$lastposterlink}</span>
	</td>
{$modbit}
</tr>