vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   How do I shut off the "subject" line being repeated in the 1st post? (https://vborg.vbsupport.ru/showthread.php?t=22227)

dwh 07-08-2001 01:06 AM

With the feature of adding a "reply" subject in posts, now even the first post has the subject displayed, I'd like to remove it and only show it on the "thread bar" above the posts.... THEN if someone has a "reply subject", I want it to show on THAT post.

dwh 07-08-2001 01:07 AM

:o

dwh 07-08-2001 01:07 AM

see what I mean? The subject is on the navbar already, I don't need it on post number 1...thanx.

The Prohacker 07-08-2001 02:01 AM

Ok, as you seen when you didn't reply with a subject it just didn't show up, so in the template:
newreply

Find:
PHP Code:

<tr>
    <
td bgcolor="{secondaltcolor}"><normalfont><b>Post subject:</b></normalfont></td>
    <
td bgcolor="{secondaltcolor}"><normalfont><input type="text" class="bginput" name="title" value="$titlesize="40" maxlength="85" tabindex="1"></normalfont> <smallfont>(Optional)</smallfont></td>
</
tr


Now before the
PHP Code:

<tr

put a
PHP Code:

<!-- 

so it looks like
PHP Code:

<!-- <tr

and put a
PHP Code:

--> 

after the </tr>, so it looks like this
PHP Code:

</tr> --> 


This will just feed a null topic to the php and not allow users to see the subject input...

dwh 07-08-2001 02:53 AM

I didn't explain myself properly.

I don't want to show it on post 1.

I DO want to show it on post 2-3-4 and so on...

Freddie Bingham 07-08-2001 03:59 PM

Change this line in newthread.php
PHP Code:

      $DB_site->query("INSERT INTO post (postid,threadid,title,username,userid,dateline,attachmentid,pagetext,allowsmilie,showsignature, ipaddress,iconid,visible) VALUES (NULL,'$threadid','".addslashes(htmlspecialchars($subject))."','".addslashes($postusername)."','$bbuserinfo[userid]','".time()."','$attachmentid','".addslashes($message)."','$allowsmilie','$signature','$ipaddress','$iconid','1')"); 

to
PHP Code:

      $DB_site->query("INSERT INTO post (postid,threadid,username,userid,dateline,attachmentid,pagetext,allowsmilie,showsignature, ipaddress,iconid,visible) VALUES (NULL,'$threadid','".addslashes($postusername)."','$bbuserinfo[userid]','".time()."','$attachmentid','".addslashes($message)."','$allowsmilie','$signature','$ipaddress','$iconid','1')"); 


dwh 07-09-2001 06:37 AM

It worked excellent. Now if only the "replytopic" was included in the moderator emails, this feature would be complete in my eyes. :D


All times are GMT. The time now is 12:05 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.00992 seconds
  • Memory Usage 1,745KB
  • 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
  • (8)bbcode_php_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