PDA

View Full Version : How to highlight threads?


XYZ500
11-08-2016, 02:38 PM
How to highlight threads? Is this a plugin? If yes, which?

Examples:
http://prnt.sc/d4p54l
http://prnt.sc/d4p5ob

In addition to this, is it somehow possible to make this highlight blink? Like flashing lights? Meaning highlight on, highlight off, highlight on. Like a flashing amber light on a traffic signal.

MarkFL
11-08-2016, 02:47 PM
I have a vBulletin product for vB 4.2.x here that will allow you to highlight threads (and add additional CSS):

Additional Thread Tools (https://vborg.vbsupport.ru/showthread.php?t=322682)

XYZ500
11-08-2016, 05:41 PM
I have a vBulletin product for vB 4.2.x here that will allow you to highlight threads (and add additional CSS):

Additional Thread Tools (https://vborg.vbsupport.ru/showthread.php?t=322682)

Thank you.

Is this a paid or free product?

I see it does the highlighting that I mentioned in OP. Can it also do the flashing thing I mentioned?

MarkFL
11-08-2016, 05:56 PM
Thank you.

Is this a paid or free product?

I see it does the highlighting that I mentioned in OP. Can it also do the flashing thing I mentioned?

All of my products are free and supported. The product to which I linked doesn't support blinking backgrounds by default, however you could likely add a flashing background via the additional CSS you can add with the setting "Additional Threadbit CSS" and adding some kind of animation CSS selector to the page.

XYZ500
11-08-2016, 06:09 PM
All of my products are free and supported. The product to which I linked doesn't support blinking backgrounds by default, however you could likely add a flashing background via the additional CSS you can add with the setting "Additional Threadbit CSS" and adding some kind of animation CSS selector to the page.

Thank you. That's great. I'm installing your product now.

I am not a techie and hence can't do that on my own without instructions. Could you be so kind to give me step by step instructions on how to add the flashing highlight feature?

--------------- Added 1478636999 at 1478636999 ---------------

All of my products are free and supported. The product to which I linked doesn't support blinking backgrounds by default, however you could likely add a flashing background via the additional CSS you can add with the setting "Additional Threadbit CSS" and adding some kind of animation CSS selector to the page.

Just installed it. Absolutely wonderful thing. Great job.
Any chance I can change the pink highlight to yellow highlight?

MarkFL
11-08-2016, 06:46 PM
Okay, after you have the product installed, add a plugin as follows:

Product: MarkFL: Additional Thread Tools

Hook Location: parse_templates

Title: Blinking Highlighted Threads

Execution Order: 5

Plugin PHP Code:

if (in_array(THIS_SCRIPT, array('forumdisplay', 'search')))
{
$template_hook['headinclude_css'] .= '<style>threadbit.markfl_highlight .deleted, .threadbit.markfl_highlight .sticky, .threadbit.markfl_highlight .nonsticky, .threadbit.markfl_highlight .discussionrow, .threadbit.markfl_highlight .alt, .threadbit.markfl_highlight .ignored {animation: blink 1s steps(1) infinite; -webkit-animation: blink 1s steps(1) infinite;} @keyframes blink {50% {background: transparent;}} @-webkit-keyframes blink {50% {background: transparent;}}</style>';
}

Plugin Is Active: Yes

Click "Save" and that should do it. :)