Log in

View Full Version : Strike thread thread title on Closed NonSticky Thread


Cyricx
10-20-2005, 10:00 PM
This was requested by J82980BA3E43 in this thread

https://vborg.vbsupport.ru/showthread.php?t=98927

What this does is it will add a line through the thread title of a closed thread that is not a sticky.

1 Template edit and your done :)


EDIT 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 IT WITH:

<!-- ##### START HACK - Strike through close threads ##### -->
<if condition="($thread[open] == 0) AND ($thread[sticky] == 0)">
<if condition="$show['gotonewpost']">
<strong><strike><a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]">$thread[threadtitle]</a></strike></strong>
<else />
<strike><a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]">$thread[threadtitle]</a></strike>
</if>
<else />
<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>
</if>
<!-- ##### END HACK - Strike through close threads ##### -->


Done :)

If you use the ajax moderation to close a thread you won't see the effects until you refresh the page.

Though anyone just loading the page of course will see the strike.

Cyricx
10-21-2005, 12:32 PM
It's too fricken early... will a mod please move this to the forumdisplay modifications forum :P

The Realist
10-21-2005, 12:49 PM
Thanks, ticks install.

Tony G
10-21-2005, 12:53 PM
Moving now. :)

J82980BA3E43
10-21-2005, 01:01 PM
thanks for your fast answer, ticks install. :nervous:

Chris M
10-21-2005, 03:42 PM
The <strike> tag is not XHTML valid... Use:

<span style="text-decoration: line-through;">...</span>
:)

Other than that, nice :)

If you want a plugin version, use the one attached :)

Chris

trancetopia
10-21-2005, 05:57 PM
The <strike> tag is not XHTML valid... Use:

<span style="text-decoration: line-through;">...</span>
:)

Other than that, nice :)

If you want a plugin version, use the one attached :)

Chris

Awesome, thanks Chris.

Kihon Kata
10-21-2005, 06:28 PM
The <strike> tag is not XHTML valid... Use:

<span style="text-decoration: line-through;">...</span>
:)

Other than that, nice :)

If you want a plugin version, use the one attached :)

Chris

Chris, where do I add that XML? What I mean is that I know where to add the XML to in HOOK location?

Cyricx
10-21-2005, 08:48 PM
Instead of doing the template edit you would go to your Admincp -> Plugin System -> Download / Upload Plugins -> Scroll to the very bottom of the screen and click Browse. Locate the file and then click Import.

Thanks Chris!!! If you want, release yours as a plugin and I'll have a moderator delete this thread :)

Kihon Kata
10-21-2005, 08:54 PM
Instead of doing the template edit you would go to your Admincp -> Plugin System -> Download / Upload Plugins -> Scroll to the very bottom of the screen and click Browse. Locate the file and then click Import.

Thanks Chris!!! If you want, release yours as a plugin and I'll have a moderator delete this thread :)

omg, how dumb am I?

XFGHIA
10-21-2005, 10:49 PM
Thanks for the plugin Chris, I also thought it would be good to have a closed thread in a different colour font, this shouldnt be hard for anyone to do anyway but this is what i done

if u used Chris M's plugin, edit the plugin and replace the PHP code with this code

if (!$thread['open'] && !$thread['sticky'])
{
$thread[threadtitle] = '<span style="text-decoration: line-through;"><font color=red>' . $thread[threadtitle] . '</font></span>';
}
i set mine to red, choose wateva u want

Chris M
10-21-2005, 11:20 PM
Instead of doing the template edit you would go to your Admincp -> Plugin System -> Download / Upload Plugins -> Scroll to the very bottom of the screen and click Browse. Locate the file and then click Import.

Thanks Chris!!! If you want, release yours as a plugin and I'll have a moderator delete this thread :)

Ok Chris cheers :)

Chris

Chris M
10-21-2005, 11:29 PM
Thanks for the plugin Chris, I also thought it would be good to have a closed thread in a different colour font, this shouldnt be hard for anyone to do anyway but this is what i done

if u used Chris M's plugin, edit the plugin and replace the PHP code with this code

if (!$thread['open'] && !$thread['sticky'])
{
$thread[threadtitle] = '<span style="text-decoration: line-through;"><font color=red>' . $thread[threadtitle] . '</font></span>';
}
i set mine to red, choose wateva u want
You should edit the <span> tag, not create a <font> tag:

$thread[threadtitle] = '<span style="text-decoration: line-through; color: #FF0000;">' . $thread[threadtitle] . '</span>';
:)

Chris

Snake
10-22-2005, 11:46 AM
Chris already made a hack like this.

Chris M
10-22-2005, 02:23 PM
Cyricx actually made this first - I then posted a plugin version earlier in this thread, and Cyricx said I could release the plugin if I liked :)

Chris

GrendelKhan{TSU
10-29-2005, 02:54 AM
Cyricx actually made this first - I then posted a plugin version earlier in this thread, and Cyricx said I could release the plugin if I liked :)

Chris


are you talking about the post in this thread? or did you make a complete different thread with your plugin?

(I'm always paranoid I'm not using the most recent version of something. lol)

ie: where should I download the plugin from?

SoftWareRevue
11-08-2005, 02:07 AM
I really like this. But, is there a way to display the strike through for search results?