"Post new thread" button hidden by "Forum information" section

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Charlie_Brown
    Senior Member
    • Dec 2006
    • 1275
    • 4.1.x

    #16
    Thanks for the information to be fixed. I doubt we will see a 4.0.6 as it was stated they are aiming the next release to be 4.1?

    Comment

    • Boofo
      Senior Member
      • Apr 2002
      • 2033
      • 4.1.x

      #17
      Yes, Kevin and I found that a while back. The only fix for now is to enable Quick Navigation.
      vBulletin - Sometimes, I'm just like, Wow, and then I'm like, Whoa, and then I'm like, Damn.

      vBulletin.org's ol' Moderator

      I have a lifetime terrorist hunting permit - #091101

      chmod a+x /bin/laden -- Allows anyone the permission to execute /bin/laden

      Comment

      • voclain
        Senior Member
        • Aug 2002
        • 411
        • 3.0.3

        #18
        I hate to ask this question....because I'm going to feel so silly after ya'll tell me...but where in the world is "QUICK NAVIGATION"???

        Kirk

        Comment

        • Boofo
          Senior Member
          • Apr 2002
          • 2033
          • 4.1.x

          #19
          Originally posted by voclain
          I hate to ask this question....because I'm going to feel so silly after ya'll tell me...but where in the world is "QUICK NAVIGATION"???

          Kirk
          Admin CP -> Settings -> Options -> General Settings -> Use Quick Navigation Menu
          vBulletin - Sometimes, I'm just like, Wow, and then I'm like, Whoa, and then I'm like, Damn.

          vBulletin.org's ol' Moderator

          I have a lifetime terrorist hunting permit - #091101

          chmod a+x /bin/laden -- Allows anyone the permission to execute /bin/laden

          Comment

          • Mind11
            Member
            • Oct 2009
            • 31
            • 4.0.0

            #20
            Hello all. This problem appeared on my forum after upgrade 4.0.6. Someone knows how to repair it?

            Comment

            • Boofo
              Senior Member
              • Apr 2002
              • 2033
              • 4.1.x

              #21
              Originally posted by Mind11
              Hello all. This problem appeared on my forum after upgrade 4.0.6. Someone knows how to repair it?
              Read my post above yours.
              vBulletin - Sometimes, I'm just like, Wow, and then I'm like, Whoa, and then I'm like, Damn.

              vBulletin.org's ol' Moderator

              I have a lifetime terrorist hunting permit - #091101

              chmod a+x /bin/laden -- Allows anyone the permission to execute /bin/laden

              Comment

              • Mind11
                Member
                • Oct 2009
                • 31
                • 4.0.0

                #22
                Originally posted by Boofo
                Read my post above yours.
                Before I wrote my post I read your post and I tried to do that. This method doesn't work on my forum and problem still exists (even when someone is logged).

                Comment

                • Lynne
                  Former vBulletin Support
                  • Oct 2004
                  • 26255

                  #23
                  These are my notes from when I helped someone fix this issue in a ticket. See if this fixes it:
                  To fix the New Thread Post hidden behind Forum options

                  Open the FORUMDISPLAY template and find this near the bottom of the template:
                  HTML Code:
                  <div id="below_threadlist" class="below_threadlist">
                  <vb:if condition="$show['newthreadlink'] AND $show['threadslist']">
                  <a href="newthread.php?{vb:raw session.sessionurl}do=newthread&amp;f={vb:raw foruminfo.forumid}" rel="nofollow" class="newcontent_textcontrol" id="newthreadlink_bottom"><span>+</span> {vb:rawphrase post_new_thread}</a>
                  </vb:if>
                  <div class="threadpagenav">
                  {vb:raw pagenav}
                  {vb:raw forumjump}
                  </div>
                  </div>
                  Change it to this:
                  HTML Code:
                  <div id="below_threadlist" class="below_threadlist">
                  <vb:if condition="$show['newthreadlink'] AND $show['threadslist']">
                  <a href="newthread.php?{vb:raw session.sessionurl}do=newthread&amp;f={vb:raw foruminfo.forumid}" rel="nofollow" class="newcontent_textcontrol" id="newthreadlink_bottom"><span>+</span> {vb:rawphrase post_new_thread}</a>
                  </vb:if>
                  <div class="threadpagenav">
                  <vb:if condition="!$pagenav AND !$forumjump">
                  <span class="pagination">&nbsp;</span>
                  <vb:else />
                  {vb:raw pagenav}
                  {vb:raw forumjump}
                  </vb:if>
                  </div>
                  </div>
                  That should fix the problem.

                  Please don't PM or VM me for support - I only help out in the threads.
                  vBulletin Manual & vBulletin 4.0 Code Documentation (API)
                  Want help modifying your vbulletin forum? Head on over to vbulletin.org
                  If I post CSS and you don't know where it goes, throw it into the additional.css template.

                  W3Schools &lt;- awesome site for html/css help

                  Comment

                  • Boofo
                    Senior Member
                    • Apr 2002
                    • 2033
                    • 4.1.x

                    #24
                    Originally posted by Mind11
                    Before I wrote my post I read your post and I tried to do that. This method doesn't work on my forum and problem still exists (even when someone is logged).
                    That is strange as I don't get that happening on 4.0.6. You are using the default skin?
                    vBulletin - Sometimes, I'm just like, Wow, and then I'm like, Whoa, and then I'm like, Damn.

                    vBulletin.org's ol' Moderator

                    I have a lifetime terrorist hunting permit - #091101

                    chmod a+x /bin/laden -- Allows anyone the permission to execute /bin/laden

                    Comment

                    • Boofo
                      Senior Member
                      • Apr 2002
                      • 2033
                      • 4.1.x

                      #25
                      I take that back, it does do that on my forums also. I was looking in the wrong place. I thought this was supposed to be fixed for 4.0.6. As I use the Quick Navigation, I didn't see it until I disabled it for testing.
                      vBulletin - Sometimes, I'm just like, Wow, and then I'm like, Whoa, and then I'm like, Damn.

                      vBulletin.org's ol' Moderator

                      I have a lifetime terrorist hunting permit - #091101

                      chmod a+x /bin/laden -- Allows anyone the permission to execute /bin/laden

                      Comment

                      • Mind11
                        Member
                        • Oct 2009
                        • 31
                        • 4.0.0

                        #26
                        Originally posted by Lynne
                        These are my notes from when I helped someone fix this issue in a ticket. See if this fixes it:
                        Hi Lynne. Thanks for your reply but I can't find this phrase in the FORUMDISPLAY template (version 4.0.6.)

                        Originally posted by Boofo
                        You are using the default skin?
                        Yes.

                        This problem appear in sub-forums which has less then 20 threads.

                        Comment

                        • Mind11
                          Member
                          • Oct 2009
                          • 31
                          • 4.0.0

                          #27
                          I'd like to note, that problem I reported here and in bug tracker for v 4.0.5 and 4.0.6, still appear in v4.0.7. Could you do something with it?

                          Link to Bug Tracker: http://tracker.vbulletin.com/browse/VBIV-8640

                          Comment

                          • Mind11
                            Member
                            • Oct 2009
                            • 31
                            • 4.0.0

                            #28
                            Silence ....

                            Comment

                            • Lynne
                              Former vBulletin Support
                              • Oct 2004
                              • 26255

                              #29
                              Your bug report is marked as a duplicate. The original is here and marked as Sprint Backlog - http://tracker.vbulletin.com/browse/VBIV-7515

                              Please don't PM or VM me for support - I only help out in the threads.
                              vBulletin Manual & vBulletin 4.0 Code Documentation (API)
                              Want help modifying your vbulletin forum? Head on over to vbulletin.org
                              If I post CSS and you don't know where it goes, throw it into the additional.css template.

                              W3Schools &lt;- awesome site for html/css help

                              Comment

                              • vb4
                                New Member
                                • Oct 2010
                                • 19

                                #30
                                Hi,

                                I recently purchased and installed the suite 4.0.7. I have this problem with the bottom "Post New Thread" button for people that are not logged in. The "Thread Display Options" bar covers it for more than 50% in both IE8 and Firefox 3.6.10.

                                I see some "fix" suggestions, but I wonder if this is scheduled to be fixed in some of the new releases.

                                Thanks

                                Comment

                                Related Topics

                                Collapse

                                Working...