PDA

View Full Version : Forum Home Enhancements - Remove 'Threads' and 'Posts' counts column from forumhome


AURFSCAN
01-08-2011, 10:00 PM
I hate all the 'numbers' on the forumhome so I got rid of the column :p
This was done on a fixed width forum.

Back up these templates so If you stuff up... just paste them back and forget about it... :rolleyes:


remove from forumhome_forumbit_level2_post template

<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
<ul class="forumstats td">
<li>{vb:rawphrase threads}: {vb:raw forum.threadcount}</li>
<li>{vb:rawphrase posts}: {vb:raw forum.replycount}</li>
</ul>




adjust in forumbits.css template

for the forumtitle Info width section

.forumbit_post .foruminfo {
width: 63%;
min-width: 30%;
float: {vb:stylevar left};
clear: {vb:stylevar right};
min-height: {vb:stylevar forumicon_size};
}


for the last post Info width section

.forumbit_post .forumrow .forumlastpost {
width: 29%;
font-size: {vb:stylevar mid_fontSize};
padding-top: {vb:math {vb:stylevar padding}/2};
}


for the forumhead 'Last Post' title alignment

.forumbit_nopost .forumhead .forumtitle {
font-size: {vb:stylevar font.fontSize};
min-width: 67%;
}


*Adjust percentages (In bold red) to suit your width


Adjust in: Settings - Options - Forum Listings Display Options - Last Thread Title Maximum Displayed Characters
to suit 'Last Post' width


Demo (http://www.aurfscan.com.au/forum.php)

:)

FReeSTER
01-09-2011, 03:36 PM
thank you so much mate, i was wondering how to do the same at my board. Thanks for sharing
Rated=5
Installed
Nominate

OurCouponHome
01-09-2011, 04:40 PM
Thanks so much! Looks so much cleaner!

goxy63
01-09-2011, 06:51 PM
cool
installed, nominated, rated, looks much better

thanks

ps
only sub-forums are bit mess :(

voglermc
01-10-2011, 02:28 PM
I pasted all your css in additional.css and made over ride changes there

Randomm
01-10-2011, 04:34 PM
I agree with you. Installed and nom.
BTW, anyway to make this apply to the sub-forums as well?

LouisB
01-10-2011, 07:37 PM
Looks so much better. Thanks.

derandechser
01-10-2011, 10:28 PM
This is pretty cool, i like that clean display, but i wanted the sum of posts too, so i did like that:
https://vborg.vbsupport.ru/
Thank you!!

FReeSTER
01-11-2011, 12:24 AM
How to do this by Category?

LouisB
01-11-2011, 12:51 AM
Just to add. When doing the changes, it messed up the appearance of my subforums when inside a forum. So i also did step 1 to "forumhome_forumbit_level1_post" to remove it from the subforums.

AURFSCAN
01-11-2011, 01:02 AM
LouisB is correct :up:

Fixing the subforum misalignment


from forumhome_forumbit_level1_post template



remove


<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
<ul class="forumstats_2 td">
<li>{vb:rawphrase threads}: {vb:raw forum.threadcount}</li>
<li>{vb:rawphrase posts}: {vb:raw forum.replycount}</li>
</ul>


:)

AURFSCAN
01-11-2011, 01:11 AM
With the above fix for subforums, I think it looks fine... but I'll sus out the subforum section widths in %

FReeSTER
01-11-2011, 06:32 PM
thank you

res6cue
01-11-2011, 08:46 PM
Very nice mod. Any idea how to get this to work on the search pages, specifically the New Posts and Daily Posts?

RedPoint
01-13-2011, 01:28 PM
its run with 4.1.x ?

RedPoint
02-06-2011, 07:41 AM
can answer anyone here, please?

Qwest
02-08-2011, 12:52 AM
Redpoint yes it seems to work in my 4.1

3amalah
02-11-2011, 06:19 PM
Any Idea How To Put This Counts Under Forum Description ?

RedPoint
02-15-2011, 12:31 PM
Redpoint yes it seems to work in my 4.1
installed - thanks

RedPoint
02-15-2011, 01:31 PM
This is pretty cool, i like that clean display, but i wanted the sum of posts too, so i did like that:
http://www.diggis-hochzeitsforum.de/images/demo1.jpg
Thank you!!



Search in forumhome_forumbit_level2_post template for:
<vb:if condition="$show['browsers']"><span class="viewing">({vb:raw forum.browsers} {vb:rawphrase viewing})</span></vb:if>

and put after this the next code:


<div class="subforums">
<h4 class="subforumlistlabel">{vb:rawphrase threads}: {vb:raw forum.threadcount}</h4>
<br />
</div>


You can change the fontstyle by play with classes of div or H4 - this all can seen on my romanian webmaster forum (http://www.cwr.ro)

AURFSCAN
02-15-2011, 10:39 PM
Thanks for verifying working with 4.1 :)

also RedPoint, some good Info ... cheers :up:

Last_Zero
02-16-2011, 05:21 PM
See This

I Made Some Changes To Show Posts And Thread Count Under Forum Title

https://vborg.vbsupport.ru/showthread.php?t=258918

Dr.osamA
02-24-2011, 07:12 AM
thank you bro

installed + 5 stars

Eq4bits
03-21-2011, 04:53 AM
This is great!
Running 4.1.2
Works in IE, FireFox, SeaMonkey, & Chrome browsers

My only question is... I too have a fixed width forum and adjusted the %'s accordingly in the css file.. HOW do I move the 'header' word *Last* over? It's a bit too far to the left for me. Anyone?

AURFSCAN
03-21-2011, 09:03 AM
'move the 'header' word *Last* over?'


it should be in forumhome_forumbit_level1_nopost template


find
<span class="forumlastpost">


add after it
&nbsp;


so it looks like this
<span class="forumlastpost"> &nbsp; {vb:rawphrase last_post}</span>


add another &nbsp; to move it over another space


:)

Eq4bits
03-21-2011, 11:55 AM
I found it... was another '%' setting. Thanks though. ;)

BlueCheri
03-21-2011, 01:01 PM
Very nice indeed, neat and clean look for the forums.

Thanx

AURFSCAN
03-21-2011, 02:19 PM
Eq4bits, it should have been the last % in the initial post - forumhead 'Last Post' title alignment

thx Cheri, I agree looks better too :)

StudentCreche
03-29-2011, 08:33 PM
https://vborg.vbsupport.ru/external/2011/03/2.jpg


How can I re align "Last Post" (highlighted above)???

Alternatively, I'd actually prefer to move the following further to the right...

https://vborg.vbsupport.ru/external/2011/03/2.jpg

Eq4bits
03-29-2011, 10:25 PM
forumbits.css template
adjust the percentage in the section below to move the lastpost stuff under the 'last post' title
.forumbit_post .forumrow .forumlastpost {
width: 29%;
font-size: {vb:stylevar mid_fontSize};
padding-top: {vb:math {vb:stylevar padding}/2};
}

StudentCreche
03-30-2011, 09:23 AM
I can't seem to suss this out... I've tried various %'s but it messes the layout on forum home and forumdisplay...

StudentCreche
03-31-2011, 01:23 PM
http://studentcreche.co.uk/align.jpg


How can I re align "Last Post" (highlighted above)???

Alternatively, I'd actually prefer to move the following further to the right...

http://studentcreche.co.uk/alignnew.jpg

AURFSCAN
03-31-2011, 10:30 PM
StudentCreche.. Move subforums 'Last Post' over

In FORUMDISPLAY template find

<span class="forumtitle">{vb:rawphrase subforums}</span>

replace with

<span class="forumtitle" style="width:69%;">{vb:rawphrase subforums}</span>


adjust your %


I'll take a look at narrowing last post Info when I have some time :)

StudentCreche
04-01-2011, 08:36 AM
Thanks AURFSCAN!!

lubbie
04-01-2011, 11:22 PM
There is a problem in 4.1.1
If i set .forumbit_post .forumrow .forumlastpost from width: 22%; to width: 29%; Subforums under a Category looks like that...

http://img13.imageshack.us/img13/2237/unbenanntvt.png (http://img13.imageshack.us/i/unbenanntvt.png/)

zeus_r6
04-03-2011, 01:00 AM
How would this be applied to fluid width forums?

cassis2k
04-21-2011, 03:53 PM
Nice, works perfectly on 4.1.3. Thank you AURFSCAN.

nacaruncr
04-29-2011, 04:04 AM
hey men, are you know how I can change the column "Threads and Posts" for the moderators?
In other words, that is, add the moderators here, but up to the word "moderates "as the columns of "Main Menu" and "Last Post"
You got something like this:
"Main Menu" "Moderators" "Last Post"

something like this:
http://www.pic-naru.nacaru.com/images/871lol2.png (http://www.pic-naru.nacaru.com/view.php?filename=871lol2.png)

nacaruncr
05-02-2011, 04:53 AM
someone have a idea how I can do this??

please give me a hand.... I don't know really how I can do it..

excuse me my pour english....

sodasusu
09-03-2011, 01:15 PM
https://vborg.vbsupport.ru/external/2011/09/83.jpg

its cool ...

someone have a idea how I can do this??

FReeSTER
09-03-2011, 04:41 PM
http://www.kikil.net/?di=DNBN

its cool ...

someone have a idea how I can do this??

There is actually an Article to do this by Lynne...
https://vborg.vbsupport.ru/showthread.php?t=228484

dang3rzon3
11-03-2011, 08:15 AM
unistalled.
doesn't work with unregistered user, template crash all the page!

Nacho Vidal
11-10-2011, 08:52 AM
Thanks for the mod, works ok on 4.1.7

thompson
12-18-2011, 01:15 PM
thanks for that.

ClErK1991
01-19-2012, 01:46 AM
i have a problem, my forum still had this 'Threads / Posts Last Post' How can i fixed?

ClErK1991
01-19-2012, 07:14 PM
no one can answer me?

AURFSCAN
01-19-2012, 11:39 PM
i have a problem, my forum still had this 'Threads / Posts Last Post' How can i fixed?

ClErK, I dont understand what you mean. post a picture of the problem if you can

Merjawy
01-20-2012, 12:51 AM
I believe in 4.1.10 the " Threads / Posts " still show on category as I found out and needs to be deleted from another template..

forumhome_forumbit_level1_nopost
Find and Remove
<span class="forumthreadpost">{vb:rawphrase threads_posts}&nbsp;</span>
Or do as I did and just comment it out (like this)
<!-- <span class="forumthreadpost">{vb:rawphrase threads_posts}&nbsp;</span> -->

Hope that helps

ClErK1991
01-20-2012, 01:05 AM
I believe in 4.1.10 the " Threads / Posts " still show on category as I found out and needs to be deleted from another template..

forumhome_forumbit_level1_nopost
Find and Remove
<span class="forumthreadpost">{vb:rawphrase threads_posts}&nbsp;</span>
Hope that helps

yeah dude, thank u very much, that fix my problem u make me happy :up:

ClErK1991
01-20-2012, 01:06 AM
ClErK, I dont understand what you mean. post a picture of the problem if you can

no need to, problem solved thanks to Merjawy

Merjawy
01-20-2012, 01:51 AM
Glad to be of some help

vetty
03-19-2012, 09:31 PM
I believe in 4.1.10 the " Threads / Posts " still show on category as I found out and needs to be deleted from another template..

forumhome_forumbit_level1_nopost
Find and Remove
<span class="forumthreadpost">{vb:rawphrase threads_posts}&nbsp;</span>
Or do as I did and just comment it out (like this)
<!-- <span class="forumthreadpost">{vb:rawphrase threads_posts}&nbsp;</span> -->

Hope that helps

It worked on forum home :)
But how to remove it in sub-forums ?
I couldn't find it in forumhome_forumbit_level2_nopost :confused:

Gemma
03-21-2012, 06:30 PM
Thanks for this. Changed it a little to suit my needs :)

WendM
06-03-2012, 10:30 PM
It worked on forum home :)
But how to remove it in sub-forums ?
I couldn't find it in forumhome_forumbit_level2_nopost :confused:

me asks the same question 2...anyone, please? :)

Davey-UK
06-16-2012, 08:16 AM
me asks the same question 2...anyone, please? :)
It is in FORUMHOME template :up:

GameOverViper
06-17-2012, 01:49 AM
Had to remove something that someone else posted about the sub-forums, but other than that it seems to be looking fine on my forum. Thanks!

Maksi
06-26-2012, 12:17 AM
Will this work for VB 4.2.0? I would like to use this for subforums only and not the home page, would I be able to setup it up only for subforums instead of having it for the entire forum.

fwulfers
06-28-2012, 01:44 PM
It is in FORUMHOME template :up:I found it in the FORUMDISPLAY template.

Will this work for VB 4.2.0? I would like to use this for subforums only and not the home page, would I be able to setup it up only for subforums instead of having it for the entire forum.Works great on our site running 4.2.0.

Shaheen
07-21-2012, 02:57 PM
Nice I like ur forum style

zascok
07-25-2012, 01:01 PM
If I may add my 2 p. Delete or comment this bit of code in 3 templates for 4.2
<span class="forumthreadpost">{vb:rawphrase threads_posts}&nbsp;</span>

templates are
FORUMDISPLAY

forumhome_forumbit_level1_nopost

forumhome_forumbit_level1_post

davidg
08-06-2012, 08:49 PM
'move the 'header' word *Last* over?'


it should be in forumhome_forumbit_level1_nopost template


find
<span class="forumlastpost">


add after it
&nbsp;


so it looks like this
<span class="forumlastpost"> &nbsp; {vb:rawphrase last_post}</span>


add another &nbsp; to move it over another space


:)

removing this line <span class="forumlastpost"> &nbsp; {vb:rawphrase last_post}</span> removes the word Last Post completely from forumhome
just in case u dont want the word Last Post :-)

wilford brimley
09-07-2012, 12:19 AM
where did you get the small RSS feed icon? the default one sucks.

edit nevermind, jsut got one off google.

piratarg
10-28-2012, 02:44 AM
I have the theme "Ideal". After fighting a couple of hours I found where the percentages change:

adjust in additional.css template
.forumbit_post .foruminfo
.forumbit_post .forumrow .forumlastpost
.forumbit_nopost .forumhead .forumtitle,

AnthonyBogs
12-16-2012, 05:47 PM
removing this line <span class="forumlastpost"> &nbsp; {vb:rawphrase last_post}</span> removes the word Last Post completely from forumhome
just in case u dont want the word Last Post :-)

Tried doing so but nothings changing over: http://mobitycoon.com/forum.php

Any help please?

craigvm
06-12-2013, 08:16 PM
thanks for this info just done it with the sub forum fix it looks loads better

Harpo
11-18-2013, 10:54 AM
Can I simply remove the texts Threads/Posts? a previous mod already got rid of the columns for me but not the texts.

Harpo
11-24-2013, 08:22 PM
I believe in 4.1.10 the " Threads / Posts " still show on category as I found out and needs to be deleted from another template..

forumhome_forumbit_level1_nopost
Find and Remove
<span class="forumthreadpost">{vb:rawphrase threads_posts}&nbsp;</span>
Or do as I did and just comment it out (like this)
<!-- <span class="forumthreadpost">{vb:rawphrase threads_posts}&nbsp;</span> -->

Hope that helps

Which template should I edit now for sub-forums? gotta get rid of the "Thread/Posts"

webnsn
07-07-2016, 09:12 AM
Sorry I am not getting below code in my site 3.7.1

<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
<ul class="forumstats td">
<li>{vb:rawphrase threads}: {vb:raw forum.threadcount}</li>
<li>{vb:rawphrase posts}: {vb:raw forum.replycount}</li>
</ul>

MarkFL
07-07-2016, 02:12 PM
Sorry I am not getting below code in my site 3.7.1

<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
<ul class="forumstats td">
<li>{vb:rawphrase threads}: {vb:raw forum.threadcount}</li>
<li>{vb:rawphrase posts}: {vb:raw forum.replycount}</li>
</ul>

These template edits are intended for vB 4.x, as template syntax is different in vB 3.x. :)

ShellyH
02-26-2018, 08:28 PM
This doesn't work for 4.2.5

oldfan
04-09-2023, 09:30 PM
kinda works on 4.2.6. php 7.2