Quote:
Originally Posted by bashy
Hi peeps
Just noticed that with this installed the inline thread title edit dont work anymore, can anyone shed some light on this please?
|
I fix this in 3.6.x byt i cannot post the fix because doesnt work in all themes!
This is the original code try part part in this part..
Code:
## Template threadbit
Find:
<if condition="$show['gotonewpost']">
<strong><a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]">$thread[threadtitle]</a></strong>
<else />
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]">$thread[threadtitle]</a>
</if>
Replace with:
<!-- TCattitude's improved thread preview -->
<if condition="$show['gotonewpost']">
<strong><a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]" onMouseOver="stm(Text[$thread[threadid]],Style[2])" onMouseOut="htm()">$thread[threadtitle]</a></strong>
<else />
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]" onMouseOver="stm(Text[$thread[threadid]],Style[2])" onMouseOut="htm()">$thread[threadtitle]</a>
</if>
<!-- / TCattitude's improved thread preview -->
## Template threadbit
edit first this
Code:
if condition="$show['gotonewpost']">
<strong><a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]">$thread[threadtitle]</a></strong>
and chech if works if not revert and edit the part after <else />(3.6.x doesnt use <else />)
ALSO BE SURE THAT YOU EDIT ThE CORECT LINES!
If you have problem i post here my threadbit with my edits and the FIX BYT ONLY IF THE OWNET WONT IT!
|