PDA

View Full Version : When viewing subforums from parent forum


AndrewSimm
12-11-2013, 03:26 PM
I have a parent forum setup with 4 sub-forums. When I click on the parent forum and it shows the list of sub-forums it also shows the threadlisthead and tookbox. I have this forum off but I would like for this stuff to not show. Any ideas?

ZUCCO
12-11-2013, 03:32 PM
I dont understand english too much but a screenshot could help me for helping you

AndrewSimm
12-11-2013, 04:02 PM
Ok, I can't post a screenshot because it isn't my forum and its not done but I have an example.

First I am running vbulletin 4.2.1 and the example is obviously 5 but same concept

http://www.vbulletin.com/forum/forum/vbulletin-5-connect/vbulletin-5-connect-questions-problems-troubleshooting

On vbulletin 4 how would I hide the threadlisthead at the bottom. I only want the sub-forums to show. Again I am on vbulletin 4.2.1.

tbworld
12-11-2013, 04:31 PM
Sorry, I took a look at this, but it was unclear to me what you are looking to do. I found the wording 'threadlisthead at bottom' confusing.

AndrewSimm
12-12-2013, 04:26 AM
threadlisthead is the name of the div that shows

Rating Thread / Thread Starter Last Post Reverse Sort Order Replies Views

ZUCCO
12-12-2013, 04:29 AM
I still cant understand what you want to do.

Digital Jedi
12-12-2013, 06:07 AM
I think what you're looking for, if I understand you correctly, is in your FORUMHOME, FORUMDISPLAY or forumhome_forumbit_levelx_xpost templates. I'm not sure the actually DIV is called that, but it would be in the general vicinity.

AndrewSimm
12-12-2013, 06:21 AM
the problem is if I hide it it also hides it on the page that shows threads. Is there a conditional for no post. I could use that as well.

tbworld
12-12-2013, 04:02 PM
I am not completely sure what you are looking for, but give this a try.

FORUMDISPLAY template

<vb:if condition="!$forumbits"> <!-- Add this conditional -->

<div class="threadlisthead table">
<div>
<span class="threadinfo">
<span class="threadtitle">
<a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_title}}" rel="nofollow">{vb:rawphrase title}{vb:raw sortarrow.title}</a> /
<a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_postusername}}" rel="nofollow">{vb:rawphrase thread_starter}{vb:raw sortarrow.postusername}</a>
</span>
</span>
<vb:if condition="$show['search_engine']">

<span class="threadstats td">{vb:rawphrase replies} {vb:raw sortarrow.replycount} / {vb:rawphrase views}</span>
<span class="threadlastpost td">{vb:rawphrase last_post_by}{vb:raw sortarrow.lastpost}</span>
<vb:else />

<span class="threadstats td"><a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_replycount}}" rel="nofollow">{vb:rawphrase replies}{vb:raw sortarrow.replycount}</a> / <a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_views}}" rel="nofollow">{vb:rawphrase views}{vb:raw sortarrow.views}</a></span>
<span class="threadlastpost td"><a href="{vb:link forum, {vb:raw foruminfo}, {vb:raw pageinfo_flastpost}}" rel="nofollow">{vb:rawphrase last_post_by}{vb:raw sortarrow.lastpost}</a></span>
<vb:if condition="$show['inlinemod']"><span class="threadimodimod td"></span></vb:if>
</vb:if>
</div>
</div>

</vb:if> <!-- Add end of conditional -->