+ Reply to Thread
Results 1 to 10 of 10

Thread: Post New Thread

  1. #1
    Senior Member PGAmerica is on a distinguished road
    Join Date
    Mar 2003
    Location
    Los Angeles
    Age
    47
    Posts
    278

    Post New Thread

    vb2.xx used to have an option when viewing a thread to reply to the post or make a brand new thread. vb3 does not seem to have this option?

    How do I get it back?
    • In the land of the blind, the one-eyed man is king.
    • If a mime dies in the forest and nobody is around to see, does anybody really care?

  2. #2
    vBulletin Team Zachery has a spectacular aura about Zachery has a spectacular aura about Zachery's Avatar
    Join Date
    Jul 2002
    Location
    Cleveland, Ohio
    Age
    24
    Posts
    40,637
    Add this to your showthread template

    HTML Code:
    <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>
    Zachery Woods
    vBulletin Support Team
    Please do not PM me for support
    $this->hasFlavr() ? $nom->nom('nom') : $want->doNot()

  3. #3
    Senior Member Yuneek is on a distinguished road Yuneek's Avatar
    Join Date
    Feb 2004
    Location
    USA
    Posts
    205
    Quote Originally Posted by Zachery
    Add this to your showthread template

    HTML Code:
    <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>
    I don't know if you know it bitg but your going to want to add that code next to the reply button code in the showthread template. If you need more help, I can help you.

  4. #4
    Member carolem is on a distinguished road
    Join Date
    Jun 2003
    Posts
    85
    I need this too!

    The line of code appears blank!
    Is there a setting I need to change to see it?
    Carolem

  5. #5
    Senior Member Yuneek is on a distinguished road Yuneek's Avatar
    Join Date
    Feb 2004
    Location
    USA
    Posts
    205
    Quote Originally Posted by carolem
    I need this too!

    The line of code appears blank!
    Is there a setting I need to change to see it?
    Carolem
    I would imagine it has something to do with account activation license wise. You probably have not registered your account to your vBulletin license.

  6. #6
    Senior Member PGAmerica is on a distinguished road
    Join Date
    Mar 2003
    Location
    Los Angeles
    Age
    47
    Posts
    278
    Yuneek, I appreciate the offer of help. I could really use it here.

    If you can just tell me what to search for in the showthread template and where to add the code, I can do it myself.

    Thanks in advance
    • In the land of the blind, the one-eyed man is king.
    • If a mime dies in the forest and nobody is around to see, does anybody really care?

  7. #7
    vBulletin Team Zachery has a spectacular aura about Zachery has a spectacular aura about Zachery's Avatar
    Join Date
    Jul 2002
    Location
    Cleveland, Ohio
    Age
    24
    Posts
    40,637
    That code works just fine

    Find


    HTML 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>
    </if> 
    replace with

    HTML 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>
    <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>
    </td>
    </if>
    Zachery Woods
    vBulletin Support Team
    Please do not PM me for support
    $this->hasFlavr() ? $nom->nom('nom') : $want->doNot()

  8. #8
    Senior Member PGAmerica is on a distinguished road
    Join Date
    Mar 2003
    Location
    Los Angeles
    Age
    47
    Posts
    278
    Zachery, very cool. Thank you.

    For those who want to add it to the bottom as well:

    in the "showthread" template search for

    Code:
    <if condition="$show['largereplybutton']">
    		<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$LASTPOSTID"><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>
    	</if>
    and replace it 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>
    <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>
    </td>
    </if>
    Last edited by PGAmerica; Thu 8th Apr '04 at 4:10pm.
    • In the land of the blind, the one-eyed man is king.
    • If a mime dies in the forest and nobody is around to see, does anybody really care?

  9. #9
    vBulletin Team Zachery has a spectacular aura about Zachery has a spectacular aura about Zachery's Avatar
    Join Date
    Jul 2002
    Location
    Cleveland, Ohio
    Age
    24
    Posts
    40,637
    Should be the same process. however


    HTML Code:
     <td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$LASTPOSTID"><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>
    and replace with


    HTML Code:
    <td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$LASTPOSTID"><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><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></td>
    Zachery Woods
    vBulletin Support Team
    Please do not PM me for support
    $this->hasFlavr() ? $nom->nom('nom') : $want->doNot()

  10. #10
    Senior Member Yuneek is on a distinguished road Yuneek's Avatar
    Join Date
    Feb 2004
    Location
    USA
    Posts
    205
    Quote Originally Posted by bitg
    Yuneek, I appreciate the offer of help. I could really use it here.

    If you can just tell me what to search for in the showthread template and where to add the code, I can do it myself.

    Thanks in advance
    Ah, sorry, didn't catch this until now. It looks like Zachery got you all fixed up though, still need anything?

+ Reply to Thread

Similar Threads

  1. Split Thread- Need to make New Thread/post = 0 views
    By MJM in forum vBulletin 3.0 How Do I and Troubleshooting Forum
    Replies: 7
    Last Post: Sat 8th Jan '05, 9:04pm
  2. Clear Post & Thread counts and Thread Title from main page?
    By RobFerrari in forum vBulletin 3.0 How Do I and Troubleshooting Forum
    Replies: 4
    Last Post: Sun 19th Oct '03, 9:01pm
  3. Switching the order of Post New Thread and Post a Reply buttons?
    By Boss-Hog in forum vBulletin Templates, Graphics & Styles
    Replies: 1
    Last Post: Thu 1st Aug '02, 1:42am
  4. New thread, post reply, edit thread, pm problems
    By ToraTora! in forum vBulletin 2 Suggestions and Feedback
    Replies: 18
    Last Post: Fri 8th Jun '01, 10:15pm
  5. Topic title, reply to thread, and post new thread
    By ey143 in forum vBulletin 1.1.x Suggestions and Feedback
    Replies: 2
    Last Post: Sun 16th Jul '00, 11:30pm

Bookmarks

Posting Permissions

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts