Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Template Modifications

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
  #102  
Old 04-12-2014, 12:42 AM
peugeot405's Avatar
peugeot405 peugeot405 is offline
 
Join Date: Feb 2010
Posts: 312
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

in addition.css

search for:

Code:
.threadbit .threadlastpost {
    clear: right;
    display: block;
    float: left;
    padding: 0.5% 0 0;
    width: 33%;
}
and replace with:

Code:
.threadbit .threadlastpost {
    clear: left;
    display: block;
    float: right;
    padding: 0.5% 0 0;
    width: 36%;
}
search for:

Code:
.threadlisthead span.threadlastpost {
    padding-left: 0;
    text-align: left;
    width: 33%;
}
and replace with:

Code:
.threadlisthead span.threadlastpost {
    padding-left: 0;
    text-align: right;
    width: 35%;
}
search for:

Code:
.threadlisthead span.threadinfo {
    width: 50%;
}
and replace with:

Code:
.threadlisthead span.threadinfo {
    width: 48%;
}
That should fix the issue.
Reply With Quote
  #103  
Old 04-12-2014, 07:07 AM
watershed's Avatar
watershed watershed is offline
 
Join Date: Feb 2012
Location: Budapest, Hungary
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by peugeot405 View Post
in addition.css

search for:

Code:
.threadbit .threadlastpost {
    clear: right;
    display: block;
    float: left;
    padding: 0.5% 0 0;
    width: 33%;
}
and replace with:

Code:
.threadbit .threadlastpost {
    clear: left;
    display: block;
    float: right;
    padding: 0.5% 0 0;
    width: 36%;
}
search for:

Code:
.threadlisthead span.threadlastpost {
    padding-left: 0;
    text-align: left;
    width: 33%;
}
and replace with:

Code:
.threadlisthead span.threadlastpost {
    padding-left: 0;
    text-align: right;
    width: 35%;
}
search for:

Code:
.threadlisthead span.threadinfo {
    width: 50%;
}
and replace with:

Code:
.threadlisthead span.threadinfo {
    width: 48%;
}
That should fix the issue.
Thank you so much!!! it did in-fact solve the issue!

Just one more quick question if i may: i'd like to make the replies column Bold, what's the best way of doing that (and changing other font styles)?

Cheers
Reply With Quote
  #104  
Old 04-12-2014, 11:15 AM
peugeot405's Avatar
peugeot405 peugeot405 is offline
 
Join Date: Feb 2010
Posts: 312
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by watershed View Post
Thank you so much!!! it did in-fact solve the issue!
I'll add the instructions on the first post.

Quote:
Originally Posted by watershed View Post
Just one more quick question if i may: i'd like to make the replies column Bold, what's the best way of doing that (and changing other font styles)?
In additional.css

Search for:

Code:
.threadbit .threadstats {
    height: 29px;
    padding: 1.2% 0 0;
    text-align: center;
    width: 7%;
}
and replace with:

Code:
.threadbit .threadstats {
    font-family: times new roman;
    font-weight: bold;
    height: 29px;
    padding: 1.2% 0 0;
    text-align: center;
    width: 7%;
}
Change time new roman to the font you want.
Reply With Quote
  #105  
Old 04-12-2014, 07:18 PM
watershed's Avatar
watershed watershed is offline
 
Join Date: Feb 2012
Location: Budapest, Hungary
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Cheers, that did make it bold, however it also made the views count bold. Is there a way to separate the styling for the post count and the view count?
Reply With Quote
  #106  
Old 04-12-2014, 08:42 PM
peugeot405's Avatar
peugeot405 peugeot405 is offline
 
Join Date: Feb 2010
Posts: 312
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It will require some template changes. Give me some time to look in to it.
Reply With Quote
  #107  
Old 05-25-2014, 09:57 AM
john7911 john7911 is offline
 
Join Date: Feb 2013
Posts: 258
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi peugeot405,
I have installed a new theme, and modified it to have the views like vb3 but Reply and Views are not in the good place, I think i did a mistake as you can see in the picture:



What can I do?
http://www.faouweb.net/forum/forum.php
Thank you
Reply With Quote
  #108  
Old 05-25-2014, 11:22 AM
john7911 john7911 is offline
 
Join Date: Feb 2013
Posts: 258
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's OK , i solved the problem
Reply With Quote
  #109  
Old 06-03-2014, 02:39 PM
arrarrgee arrarrgee is offline
 
Join Date: Dec 2013
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi Peugeot,
I cant seem to find any code in my additional.css template. I have a 4.2.2. Could you help me pls. Am i looking at the correct thing?
Thx
arr
Reply With Quote
  #110  
Old 06-03-2014, 02:42 PM
arrarrgee arrarrgee is offline
 
Join Date: Dec 2013
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The default shows nothing...the template is empty. Help pls
Reply With Quote
  #111  
Old 06-03-2014, 02:49 PM
Disco_Dave's Avatar
Disco_Dave Disco_Dave is offline
 
Join Date: May 2011
Location: Belfast
Posts: 586
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by arrarrgee View Post
The default shows nothing...the template is empty. Help pls
Just add this bit of code into your additional.css

PHP Code:
.threadbit .threadstats {
    
font-familytimes new roman;
    
font-weightbold;
    
height29px;
    
padding1.20 0;
    
text-aligncenter;
    
width7%;

Reply With Quote
Reply

Thread Tools

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 08:09 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.08243 seconds
  • Memory Usage 2,349KB
  • Queries Executed 26 (?)
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
  • (14)bbcode_code
  • (1)bbcode_php
  • (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
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (3)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (4)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_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