vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   New Thread Option inside actual Thread! (https://vborg.vbsupport.ru/showthread.php?t=70202)

smess 10-05-2004 12:36 AM

New Thread Option inside actual Thread!
 
I have seen this but have not found the hack for it. The newer version of Vb does not have the start new thread option once you are in a thread and viewing the posts. Is there a way to add this either at the top or the bottom of the posts?

Thanks

miz 10-05-2004 12:58 AM

i dont think its enabled on vbulletin options but here is mini mod i wrote just now

open showthread.php

find :
Code:

$show['largereplybutton'] = (!$thread['isdeleted'] AND !$show['threadedmode'] AND $forum['allowposting']);
under add :

Code:

$show['largenewthreadbutton'] = (!$thread['isdeleted'] AND !$show['threadedmode'] AND $forum['allowposting']);
open templte showthread :

find :

Code:

<if condition="$show['largereplybutton']">
                <td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$FIRSTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></td>
        <else />
                <td class="smallfont">&nbsp;</td>
        </if>

Replace with :

Code:

        <if condition="$show['largereplybutton']">
                <td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$FIRSTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a>
        <else />
                <td class="smallfont">&nbsp;</td>
        </if>
        <if condition="$show['largenewthreadbutton']">
                <a href="newthread.php?do=newthread&f=$forum[forumid]"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[newthread]" border="0" />
                                </a></td>
        <else />
                <td class="smallfont">&nbsp;</td>
        </if>

thats all

enjoy.

peterska2 10-05-2004 01:00 AM

Yeah

In your SHOWTHREAD template

FIND

Code:

<!-- controls above postbits -->
 <table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom:3px">
 <tr valign="bottom">

ADD BELOW

Code:

<td class="smallfont"><if condition="$show['newthreadlink']"><a href="newthread.php?$session[sessionurl]do=newthread&amp;f=$foruminfo[forumid]"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /></a><else />&nbsp;</if></td>
FIND

Code:

<!-- controls below postbits -->
 <table cellpadding="0" cellspacing="0" border="0" width="100%">
 <tr valign="top">

ADD BELOW


Code:

<td class="smallfont"><if condition="$show['newthreadlink']"><a href="newthread.php?$session[sessionurl]do=newthread&amp;f=$foruminfo[forumid]"><img src="$stylevar[imgdir_button]/newthread.gif" alt="$vbphrase[post_new_thread]" border="0" /></a><else />&nbsp;</if></td>
(I Released this on vBT ages ago)

miz 10-05-2004 01:09 AM

Quote:

<if condition="$show['newthreadlink']">

hmm where do you see that conditin, i mean where does it get value, i searched in showthread.php but i didnt found it...

smess 10-05-2004 01:58 AM

Miz,

my code says the following

$show['largereplybutton'] = (!$thread['isdeleted'] AND !$show['threadedmode'] AND $forum['allowposting']);
if (!$forum['allowposting'])
{
$SHOWQUICKREPLY = false;

where should I put the following line exactly?

$show['largenewthreadbutton'] = (!$thread['isdeleted'] AND !$show['threadedmode'] AND $forum['allowposting']);

miz 10-05-2004 12:43 PM

Quote:

Originally Posted by smess
Miz,

my code says the following

$show['largereplybutton'] = (!$thread['isdeleted'] AND !$show['threadedmode'] AND $forum['allowposting']);
if (!$forum['allowposting'])
{
$SHOWQUICKREPLY = false;

where should I put the following line exactly?

$show['largenewthreadbutton'] = (!$thread['isdeleted'] AND !$show['threadedmode'] AND $forum['allowposting']);

after this line :


Code:

$show['largereplybutton'] = (!$thread['isdeleted'] AND !$show['threadedmode'] AND $forum['allowposting']);

smess 10-05-2004 02:46 PM

thanks, works great


All times are GMT. The time now is 11:17 AM.

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.01081 seconds
  • Memory Usage 1,735KB
  • 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
  • (9)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete