vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=246)
-   -   Forum Display Enhancements - Split posts/treads like vb3 (https://vborg.vbsupport.ru/showthread.php?t=299530)

peugeot405 06-26-2013 10:00 PM

Split posts/treads like vb3
 
1 Attachment(s)
This mod splits posts/threads on forumhome and forumdisplay like on a vb3 forum.

This has been asked a lot here on vbulletin.org. So here it is. Enjoy.

changelog:

v1.0
initial release

v1.1
updated the css code

v1.2
updated 1 more css code

v1.3
updated the css code

Two files are included in the zip-file:
  • split_threads_post_like_vb3_v_1_3.txt for new install
  • split_threads_post_like_vb3_upgrade_v_1_2_to_v_1_3 .txt to update from v1.2 to v1.3

peugeot405 07-24-2013 07:38 PM

Updated to version 1.1

see first post for details

synseal 07-25-2013 10:50 AM

Any screenshots?.

__________________________________________________ _________

Quote:

Originally Posted by peugeot405 (Post 2435303)
screenshots are in first post

Ahhhh... they are now!

peugeot405 07-25-2013 11:16 AM

updated to v1.2

updated screenshots

Quote:

Originally Posted by synseal (Post 2435300)
Any screenshots?.

screenshots are in first post )

stevieb 08-04-2013 11:34 AM

Does this work on vB 4.2.0?

Thanks :)

peugeot405 08-04-2013 10:04 PM

Quote:

Originally Posted by stevieb (Post 2437034)
Does this work on vB 4.2.0?

Thanks :)

It does work on vb 4.2.0

stevieb 08-05-2013 11:40 AM

Quote:

Originally Posted by peugeot405 (Post 2437145)
It does work on vb 4.2.0

thanks just installed.... having a couple of errors.

peugeot405 08-05-2013 11:52 AM

Code:

.forumbit_post .foruminfo {
    clear: right;
    float: left;
    min-height: 48px;
    min-width: 30%;
    width: 41.2%;
}

is missing

stevieb 08-05-2013 11:54 AM

Thanks - I think these are missing from both the uploads on both mods mate.....

Might need a wee update to fix them :)

stevieb 08-05-2013 11:56 AM

can the "last post" column be moved further to the right? Maybe by another 150px approx?

peugeot405 08-05-2013 11:57 AM

They are in the file. I have them before me. :)

anyway it's working now.

stevieb 08-05-2013 11:59 AM

Quote:

Originally Posted by peugeot405 (Post 2437288)
They are in the file. I have them before me. :)

anyway it's working now.

weird how it didn't add when I copied pasted.... but you're right it is there!

Thanks again, top bloke and amazing support :)

stevieb 08-05-2013 12:01 PM

Quote:

Originally Posted by stevieb (Post 2437287)
can the "last post" column be moved further to the right? Maybe by another 150px approx?

last question then I'll donate to you - if you PM your paypal address please :)

peugeot405 08-05-2013 12:22 PM

Quote:

Originally Posted by stevieb (Post 2437287)
can the "last post" column be moved further to the right? Maybe by another 150px approx?

find following :

Code:

.forumbit_post .foruminfo {
    clear: right;
    float: left;
    min-height: 48px;
    min-width: 30%;
    width: 41.2%;
}

replace with:

Code:

.forumbit_post .foruminfo {
    clear: right;
    float: left;
    min-height: 48px;
    min-width: 30%;
    width: 54.2%;
}

find following:

Code:

.forumbit_post .forumrow .forumlastpost {
    float: left;
    font-size: 12px;
    height: 31px;
    padding: 7.5px 0 0;
    width: 33.6%;
}

replace with:

Code:

.forumbit_post .forumrow .forumlastpost {
    float: left;
    font-size: 12px;
    height: 31px;
    padding: 7.5px 0 0;
    width: 20.6%;
}

find following:

Code:

.forumbit_nopost .forumhead .forumtitle {
    font-size: 13px;
    min-width: 30%;
    width: 50.2%;
}

replace with:

Code:

.forumbit_nopost .forumhead .forumtitle {
    font-size: 13px;
    min-width: 30%;
    width: 64.8%;
}

find following:

Code:

.forumbit_nopost .forumhead span.forumlastpost, .forumbit_post .forumhead span.forumlastpost {
    width: 33.2%;
}

replace with:

Code:

.forumbit_nopost .forumhead span.forumlastpost, .forumbit_post .forumhead span.forumlastpost {
    width: 18.2%;
}


stevieb 08-05-2013 12:33 PM

ooops nope - take a look at index page :(

stevieb 08-05-2013 12:34 PM

the titles have gone perfectly, just not the actual threads - but based on the position of the titles, that is perfect :)

peugeot405 08-05-2013 12:35 PM

you forgot a part:


find following :

Code:

.forumbit_post .foruminfo {
    clear: right;
    float: left;
    min-height: 48px;
    min-width: 30%;
    width: 41.2%;
}

replace with:

Code:

.forumbit_post .foruminfo {
    clear: right;
    float: left;
    min-height: 48px;
    min-width: 30%;
    width: 54.2%;
}


stevieb 08-05-2013 12:38 PM

Quote:

Originally Posted by peugeot405 (Post 2437300)
you forgot a part:


find following :

You ARE the man - well done. Please tell me how to donate and help say thanks for all your time and support. Highly recommended.

Thank you.

peugeot405 08-05-2013 12:41 PM

just one more change:

find following:

Code:

.forumbit_nopost .forumhead .forumtitle {
    font-size: 13px;
    min-width: 30%;
    width: 64.8%;
}

replace with:

Code:

.forumbit_nopost .forumhead .forumtitle {
    font-size: 13px;
    min-width: 30%;
    width: 64.6%;
}

then it's perfect. :)

peugeot405 08-05-2013 12:44 PM

oops, forgot something myself :(

find following:

Code:

.forumbit_nopost .forumhead span.forumlastpost, .forumbit_post .forumhead span.forumlastpost {
    width: 18.2%;
}

replace with:

Code:

.forumbit_nopost .forumhead span.forumlastpost, .forumbit_post .forumhead span.forumlastpost {
    width: 18.6%;
}


stevieb 08-05-2013 12:44 PM

Quote:

Originally Posted by peugeot405 (Post 2437303)
oops, forgot something myself :(

Quote:

Originally Posted by peugeot405 (Post 2437302)
just one more change:

then it's perfect. :)

Indeed it is perfect - thank you.

Ok, tell me how to donate :)

peugeot405 08-05-2013 12:48 PM

Quote:

Originally Posted by stevieb (Post 2437304)
Indeed it is perfect - thank you.

Ok, tell me how to donate :)

just click on support developer on the right on the first post.

Thank you for donating. :up:

stevieb 08-05-2013 12:48 PM

1 Attachment(s)
Not a rant at you, more at vB.Org.

Why do you force us to like other posts when in fact we should be free to like all posts we want to like! At the end of the day this coder has been a godsend to us and provided exceptional support for several hours now - so why can I not thank ALL his posts?

It's a con - I will whinge at vB about this cos I really don't want to have to thank random posts just so you can get some more. :)

Attachment 145948

stevieb 08-05-2013 12:50 PM

Quote:

Originally Posted by peugeot405 (Post 2437305)
just click on support developer on the right on the first post.

Thank you for donating. :up:

donation made - thanks for all your help today mate, we really appreciate it.

Awesome +1

peugeot405 08-05-2013 12:54 PM

Quote:

Originally Posted by stevieb (Post 2437307)
donation made - thanks for all your help today mate, we really appreciate it.

Awesome +1

Thanks, glad you all like it :)

TravisWPaquin 08-09-2013 09:59 PM

I'm not seeing a change from the pictures you have provided. Perhaps it is a lack on my behalf, but I'm not seeing the drastic change from VB.4.X & and VB 3.x thread and posts layout. It sounds nice, but what am I exactly looking at or what is the difference? Is there a place I can see a live comparison to my board to see if I like the fit? Thank you.

peugeot405 08-09-2013 10:21 PM

1 Attachment(s)
I don't have a live forum at the moment.

Posted new screenshots

before:

Attachment 145991

after:

Attachment 145992

synseal 08-10-2013 01:40 AM

Quote:

Originally Posted by peugeot405 (Post 2438078)
I don't have a live forum at the moment.

Posted new screenshots

before:

Attachment 145991

after:

Attachment 145992

That imo would be a better first post screenshot of before and after.

Now I see the difference it makes.

TravisWPaquin 08-10-2013 05:37 AM

Quote:

Originally Posted by peugeot405 (Post 2438078)
I don't have a live forum at the moment.

Posted new screenshots

before:

Attachment 145991

after:

Attachment 145992

Thank you, kindly for taking your time to post these. Now I see the difference. Will be installing momentarialy! (Installed)
So much cleaner.

peugeot405 08-10-2013 05:50 AM

First post updated with new screenshots.

peugeot405 08-10-2013 05:51 AM

Quote:

Originally Posted by TravisWPaquin (Post 2438106)
Thank you, kindly for taking your time to post these. Now I see the difference. Will be installing momentarialy! (Installed)
So much cleaner.

No problem, glad you like it.

TravisWPaquin 08-10-2013 05:55 AM

Quote:

Originally Posted by peugeot405 (Post 2438108)
First post updated with new screenshots.

I just had one inquiry. Can this be done to the threads within the forum so it matches with the forum order?

Perhaps I missed it?

peugeot405 08-10-2013 06:12 AM

Quote:

Originally Posted by TravisWPaquin (Post 2438110)
I just had one inquiry. Can this be done to the threads within the forum so it matches with the forum order?

Perhaps I missed it?

Here is the link:

Split replies/views like vb3

TravisWPaquin 08-10-2013 06:15 AM

Quote:

Originally Posted by peugeot405 (Post 2438112)

Thank you!

peugeot405 08-10-2013 06:16 AM

Quote:

Originally Posted by TravisWPaquin (Post 2438113)
Thank you!

no problem.


All times are GMT. The time now is 05:23 PM.

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.01380 seconds
  • Memory Usage 1,822KB
  • 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
  • (15)bbcode_code_printable
  • (20)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (35)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