vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Miscellaneous Hacks - topicKill - antibump of topic (https://vborg.vbsupport.ru/showthread.php?t=150341)

inciarco 03-08-2009 03:08 PM

Quote:

Originally Posted by ravenscape (Post 1762076)
I'm interested in a hack/plug-in with this functionality. Does this actually work with 3.7.x? Is there another hack/plug-in with this functionality that works with 3.7?

The Mod on vB373, but has the Bug that don't Change on the Thread's List of ForumDisplay (Threadbit Template) the Icon of the Thread Changed for the Killed Icon of the Mod (https://vborg.vbsupport.ru/external/2011/07/109.jpg).

I've tried by myself to do that Change in various ways (my knowledge is limited) and Haven't been able to do it.

Coders Shack, could you please point us into a Solution to be able to see the Killed Thread's Icon on the Threadbits? :confused:

Everything Else Works Fine, that's the Only Detail, and is Important to see which Thread's are Killed and Revive them if wanted to, otherwise it'd be very Hard to Remember and Locate those Killed Threads. We Appreciate Your Help Coders Shack. ;)

My Best Regards.

:)

fishmaster 05-20-2011 07:01 PM

Any other similar mods to this one out there?

Mont 06-15-2011 11:39 AM

I installed it and it works great for my classifieds ad section to keep users from bumping posts only to get them up top. Thanks for a great mod!

inciarco 07-03-2011 04:11 PM

Quote:

Originally Posted by inciarco (Post 1763229)
The Mod on vB373, but has the Bug that don't Change on the Thread's List of ForumDisplay (Threadbit Template) the Icon of the Thread Changed for the Killed Icon of the Mod (https://vborg.vbsupport.ru/attachmen...1&d=1182482222).

I've tried by myself to do that Change in various ways (my knowledge is limited) and Haven't been able to do it.

Coders Shack, could you please point us into a Solution to be able to see the Killed Thread's Icon on the Threadbits? :confused:

Everything Else Works Fine, that's the Only Detail, and is Important to see which Thread's are Killed and Revive them if wanted to, otherwise it'd be very Hard to Remember and Locate those Killed Threads. We Appreciate Your Help Coders Shack. ;)

My Best Regards.

:)

For the Icon to Display on threadbit at vB38x, is necessary to Change the Following Plugin "topicKill - Show Killed Icon" to:

Code:

// show killed folder?

$var_killed = $vbulletin->db->query_read("
            SELECT killed
            FROM " . TABLE_PREFIX . "thread
            WHERE threadid = " . intval($thread['threadid']) . "
        ");
$var_killed = $vbulletin->db->fetch_array($var_killed);
$var_killed = $var_killed['killed'];

                if ($var_killed == 1 AND $vbulletin->options['topicKill_enabled'])                {
                        $thread['statusicon'] = '_killed';
                }

For some reason the threadbit_process don't Detect the $thread['killed'] so is necessary to Search those Values with the $vbulletin->db->query_read and the $vbulletin->db->fetch_array and the $var_killed['killed'].

Perhaps You Know what to do for the the $thread['killed'] be Used at the threadbit_process Hook Location.

My Best Regards.

:)


All times are GMT. The time now is 06:02 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01702 seconds
  • Memory Usage 1,728KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete