Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Split replies/views like vb3 Details »»
Split replies/views like vb3
Version: 1.3, by peugeot405 peugeot405 is offline
Developer Last Online: May 2023 Show Printable Version Email this Page

Category: Forum Display Enhancements - Version: 4.2.x Rating:
Released: 06-26-2013 Last Update: 08-09-2013 Installs: 15
Template Edits
 
No support by the author.

This mod splits replies/views on threadbit like on a vb3 forum.

changelog:

v1.0
initial release

v1.1
updated the css code

v1.2
updated the css code

v1.3
updated the css code

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

Added a fix for new post search in what's new, caussed by the changes from split replies/views like vb3.

Download Now

File Type: zip split_replies_views_like_vb3_v_1_3.zip (2.6 KB, 130 views)
File Type: txt Fix_for_new_post_search_in_what's_new.txt (1.8 KB, 67 views)

Screenshots

File Type: jpg threadbit-before.jpg (36.9 KB, 0 views)
File Type: jpg threadbit-after.jpg (20.3 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
3 благодарности(ей) от:
Amaury, davidg, fai99al99

Comments
  #92  
Old 02-03-2014, 08:38 PM
peugeot405's Avatar
peugeot405 peugeot405 is offline
 
Join Date: Feb 2010
Posts: 312
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by peugeot405 View Post
ok now i see the confusion it's my other mod Split posts/treads like vb3 you have installed. that's why i couldn't find the problem. Sorry, was getting very late at that time.

i'll look in to it tonight.
In addtional.css search for:

Code:
.forumbit_post .forumstats, .forumbit_post .forumstats_2 {
    display: block;
    float: left;
    height: 30px;
    margin-right: 0;
    padding-top: 1.5%;
    text-align: center;
    width: 7%;
}
and replace it with:

Code:
.forumbit_post .forumstats, .forumbit_post .forumstats_2 {
    display: block;
    float: left;
    height: 30px;
    margin-right: 0;
    padding-top: 2%;
    text-align: center;
    width: 6.5%;
    background: #333333;
    border-left: 2px solid #0d0d0d;
    border-right: 2px solid #0d0d0d;
}
.forumbit_post .forumstats, .forumbit_post .forumstats_3 {
    display: block;
    float: left;
    height: 30px;
    margin-right: 0;
    padding-top: 1.5%;
    text-align: center;
    width: 6.5%;
}
In forumhome_forumbit_level1_post search for:

Code:
    <!-- Split posts/treads like vb3 -->
			<div class="forumlastpost td">
				<h4 class="lastpostlabel">{vb:rawphrase last_post}:</h4>
				<div>
					{vb:raw forum.lastpostinfo}
				</div>
			</div>
			<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
				<ul class="forumstats_2 td">
					<li>{vb:raw forum.threadcount}</li> 
				</ul>
			 <ul class="forumstats_2 td">
				 <li>{vb:raw forum.replycount}</li> 
				</ul>
    <!-- Split posts/treads like vb3 -->
and replace it with:

Code:
    <!-- Split posts/treads like vb3 -->
			<div class="forumlastpost td">
				<h4 class="lastpostlabel">{vb:rawphrase last_post}:</h4>
				<div>
					{vb:raw forum.lastpostinfo}
				</div>
			</div>
			<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
				<ul class="forumstats_2 td">
					<li>{vb:raw forum.threadcount}</li> 
				</ul>
			 <ul class="forumstats_3 td">
				 <li>{vb:raw forum.replycount}</li> 
				</ul>
    <!-- Split posts/treads like vb3 -->
In forumhome_forumbit_level2_post search for:

Code:
    <!-- Split posts/treads like vb3 -->
			<div class="forumlastpost td">
			<h4 class="lastpostlabel">{vb:rawphrase last_post}:</h4>
				<div>
					{vb:raw forum.lastpostinfo}
				</div>
			</div>
			<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
				<ul class="forumstats_2 td">
					<li>{vb:raw forum.threadcount}</li> 
				</ul>
			 <ul class="forumstats_2 td">
				 <li>{vb:raw forum.replycount}</li> 
				</ul>
    <!-- Split posts/treads like vb3 -->
and replace it with:

Code:
    <!-- Split posts/treads like vb3 -->
			<div class="forumlastpost td">
			<h4 class="lastpostlabel">{vb:rawphrase last_post}:</h4>
				<div>
					{vb:raw forum.lastpostinfo}
				</div>
			</div>
			<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
				<ul class="forumstats_2 td">
					<li>{vb:raw forum.threadcount}</li> 
				</ul>
			 <ul class="forumstats_3 td">
				 <li>{vb:raw forum.replycount}</li> 
				</ul>
    <!-- Split posts/treads like vb3 -->
Reply With Quote
  #93  
Old 02-03-2014, 10:09 PM
john7911 john7911 is offline
 
Join Date: Feb 2013
Posts: 258
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you very much peugeot405
Reply With Quote
  #94  
Old 02-03-2014, 11:40 PM
peugeot405's Avatar
peugeot405 peugeot405 is offline
 
Join Date: Feb 2010
Posts: 312
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by john7911 View Post
Thank you very much peugeot405
Glad to help.
Reply With Quote
  #95  
Old 02-04-2014, 07:18 AM
john7911 john7911 is offline
 
Join Date: Feb 2013
Posts: 258
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have a small question.
If I change the resolution of the screen, there is a gap as you can see in the picture:

I have tried to modify it with Firebug but i don't know how to solve it
What I have to modify?
Thank you
Reply With Quote
  #96  
Old 02-08-2014, 12:00 PM
peugeot405's Avatar
peugeot405 peugeot405 is offline
 
Join Date: Feb 2010
Posts: 312
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sorry for late replay.

try this:

in additional.css search for:

Code:
.forumbit_post .forumstats, .forumbit_post .forumstats_2 {
    display: block;
    float: left;
    height: 30px;
    margin-right: 0;
    padding-top: 2%;
    text-align: center;
    width: 6.5%;
    background: #333333;
    border-left: 2px solid #0d0d0d;
    border-right: 2px solid #0d0d0d;
}
.forumbit_post .forumstats, .forumbit_post .forumstats_3 {
    display: block;
    float: left;
    height: 30px;
    margin-right: 0;
    padding-top: 1.5%;
    text-align: center;
    width: 6.5%;
}
and replace with:

Code:
.forumbit_post .forumstats, .forumbit_post .forumstats_2 {
    display: block;
    float: left;
    height: 36px;
    margin-right: 0;
    padding-top: 3%;
    text-align: center;
    width: 6.5%;
    background: #333333;
    border-left: 2px solid #0d0d0d;
    border-right: 2px solid #0d0d0d;
}
.forumbit_post .forumstats, .forumbit_post .forumstats_3 {
    display: block;
    float: left;
    height: 36px;
    margin-right: 0;
    padding-top: 3%;
    text-align: center;
    width: 6.5%;
}
Reply With Quote
  #97  
Old 02-08-2014, 07:29 PM
john7911 john7911 is offline
 
Join Date: Feb 2013
Posts: 258
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you very much peugeot405
Reply With Quote
  #98  
Old 02-08-2014, 08:55 PM
peugeot405's Avatar
peugeot405 peugeot405 is offline
 
Join Date: Feb 2010
Posts: 312
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by john7911 View Post
Thank you very much peugeot405
no problem, glad to help.
Reply With Quote
  #99  
Old 04-05-2014, 01:07 PM
watershed's Avatar
watershed watershed is offline
 
Join Date: Feb 2012
Location: Budapest, Hungary
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi and thanks for writing this mod, it looks promising and is something i've been searching for some time

However when I install it i don't get the correct view, it seems to be some allignment problem, perhaps to do with me using an RTL language or some other addon. I was wondering if anybody could help out, I've double checked that i did the edits right, and there did not seem to be any conflicts with something previous on additional.css

I'm using a style called morbid_blue_fluid which could be found here https://vborg.vbsupport.ru/showthread.php?t=233338

I'm attaching a screenshot of the way it appears after installation.

Thanks for the help
Attached Images
File Type: jpg style error.jpg (24.9 KB, 0 views)
Reply With Quote
  #100  
Old 04-10-2014, 03:27 PM
peugeot405's Avatar
peugeot405 peugeot405 is offline
 
Join Date: Feb 2010
Posts: 312
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by watershed View Post
Hi and thanks for writing this mod, it looks promising and is something i've been searching for some time

However when I install it i don't get the correct view, it seems to be some allignment problem, perhaps to do with me using an RTL language or some other addon. I was wondering if anybody could help out, I've double checked that i did the edits right, and there did not seem to be any conflicts with something previous on additional.css

I'm using a style called morbid_blue_fluid which could be found here https://vborg.vbsupport.ru/showthread.php?t=233338

I'm attaching a screenshot of the way it appears after installation.

Thanks for the help
Hi, glad you like it.

I'm having some issues with my testside at the moment, so i can't test it at the moment. I need some time to fix it.

If you post a link to your website, i'll see if i can fix it.
Reply With Quote
Благодарность от:
watershed
  #101  
Old 04-11-2014, 09:03 AM
watershed's Avatar
watershed watershed is offline
 
Join Date: Feb 2012
Location: Budapest, Hungary
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi and thank you so much for the reply!

so here is the link: http://www.hakafe.com/forum3.html

You would have to change view style to morbid_blud_fluid because that's the one on which i made the edits (my users use the default one, i didn't want to try to mess around with that one live). Perhaps it is some edit in that style that prevents it from displaying correctly and it would work fine on the default, i was hoping you could assist me with that.

Cheers again!

update: actually, upon changing language to English i see that it is displayed correctly! So i'm guessing it has to do with the RTL language. just a heads up
Reply With Quote
Reply


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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:40 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05587 seconds
  • Memory Usage 2,366KB
  • Queries Executed 28 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (8)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (4)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (5)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete