Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
ThreadWorks: Threaded Forum Display Details »»
ThreadWorks: Threaded Forum Display
Version: 1.1.9.1, by ibautocommunity ibautocommunity is offline
Developer Last Online: Jun 2020 Show Printable Version Email this Page

Category: Forum Display Enhancements - Version: 3.7.5 Rating:
Released: 03-25-2009 Last Update: 03-26-2009 Installs: 10
Uses Plugins Template Edits
Additional Files Is in Beta Stage  
No support by the author.

ThreadWorks
ThreadWorks is a vB plugin that allows a threaded forum display.

Features:
No modification to the vB code base

Only one template edit is necessary.

Saves display options sort order when a user chooses how to sort threads on forumdisplay.php

Installation
Installation instructions are included in do_not_upload/README.install.txt and are very simple.

Live Demo
To see it in a live production environment, visit http://forums.audiworld.com. Threaded mode is not enabled by default. You will need to register an account and set thread display mode to threaded in User CP.

Contact / Support
If you have any questions/problems post them here and I will get to them when I can.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 03-27-2009, 03:32 PM
ibautocommunity's Avatar
ibautocommunity ibautocommunity is offline
 
Join Date: Jan 2009
Location: Los Angeles, CA
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Patrick1969 View Post
I got it and it works with the NT as well as URL and PIC .gif, this is very good. Now the only thing I would need it a way to highlight the posts and/or threads which have been viewed while viewing the forum in a Threaded Format like this. That would be the last fix required for this format in order for all participants to adopt it as well as use it, is there an easy fix for this?
You can achieve this simply by adding the following CSS definitions:

a.threadlink {
color: blue;
}
a.threadlink:visited {
color: #551a8b;
}

You add these by going to "Styles & Templates"->"Style Manager" and editing the Main CSS for your style. Add them to "Additional CSS Definitions".
Reply With Quote
  #13  
Old 03-27-2009, 04:08 PM
Patrick1969 Patrick1969 is offline
 
Join Date: Mar 2009
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ibautocommunity View Post
You can achieve this simply by adding the following CSS definitions:

a.threadlink {
color: blue;
}
a.threadlink:visited {
color: #551a8b;
}

You add these by going to "Styles & Templates"->"Style Manager" and editing the Main CSS for your style. Add them to "Additional CSS Definitions".
Thank you so much, that did the trick.

The only two last questions I have when you have a chance to get to it, is how to change the font size in the threaded forum view as well as the background color which differentiate the different threads and then I'd be pretty much set (I hope)

And again thank you for putting this together as well as taking the time to walk me through it all, it is greatly appreciated.
Reply With Quote
  #14  
Old 03-27-2009, 04:40 PM
ibautocommunity's Avatar
ibautocommunity ibautocommunity is offline
 
Join Date: Jan 2009
Location: Los Angeles, CA
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Patrick1969 View Post
Thank you so much, that did the trick.

The only two last questions I have when you have a chance to get to it, is how to change the font size in the threaded forum view as well as the background color which differentiate the different threads and then I'd be pretty much set (I hope)

And again thank you for putting this together as well as taking the time to walk me through it all, it is greatly appreciated.
I am glad it is working for you. I plan on making the alternating background colors more configurable, but for now they rely on the alt1/alt2 css classes. However, in the current xml file I also define another color that fits our need at the moment. If you want it to only rely on the alt1/alt2 classes, you will have to edit the xml file and remove the following bit of code:

$thread_bg_color = ($thread_bg_color) ? '' : 'background-color: #eeeae8;';
Reply With Quote
  #15  
Old 03-27-2009, 05:06 PM
Patrick1969 Patrick1969 is offline
 
Join Date: Mar 2009
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ibautocommunity View Post
I am glad it is working for you. I plan on making the alternating background colors more configurable, but for now they rely on the alt1/alt2 css classes. However, in the current xml file I also define another color that fits our need at the moment. If you want it to only rely on the alt1/alt2 classes, you will have to edit the xml file and remove the following bit of code:

$thread_bg_color = ($thread_bg_color) ? '' : 'background-color: #eeeae8;';
Thank you I will have to get it done and try different things, as long as the forum is not officially launched I can play with the settings. So far fantastic, and the threaded view if for the users who have known only Network54 type forums, very simple with no options... as such I'd rather give them an option they are familiar with and this works.

In some of the image samples you posted, the font did not look as big as what I am seeing on my monitor once I set it to Threaded Forum View. I inserted an image below. How do I make the font smaller? What I'll do afterward is attempt match the 'light yellow' background to the main forum standard gray #E1E1E2 the light blue is perfect though.

Here is a screen capture, see how big the font is... I just have no idea how to make it smaller

Reply With Quote
  #16  
Old 03-27-2009, 05:16 PM
ibautocommunity's Avatar
ibautocommunity ibautocommunity is offline
 
Join Date: Jan 2009
Location: Los Angeles, CA
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Patrick1969 View Post
In some of the image samples you posted, the font did not look as big as what I am seeing on my monitor once I set it to Threaded Forum View. I inserted an image below. How do I make the font smaller? What I'll do afterward is attempt match the 'light yellow' background to the main forum standard gray #E1E1E2 the light blue is perfect though.
The font size is currently defined by the bigusername class.

In the xml file the line of code is:
$threadworks .= "<div class='bigusername $thread_alt' style='$thread_bg_color padding: 10px'>";
Reply With Quote
  #17  
Old 03-27-2009, 05:33 PM
Patrick1969 Patrick1969 is offline
 
Join Date: Mar 2009
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ibautocommunity View Post
The font size is currently defined by the bigusername class.

In the xml file the line of code is:
$threadworks .= "<div class='bigusername $thread_alt' style='$thread_bg_color padding: 10px'>";
Thank you, I was successful in changing the background color however I had difficulties in making the font smaller, I just got it by changing 'bigusername' to user name that worked.

Thank you for pointing me in the right direction for this one.
Reply With Quote
  #18  
Old 03-27-2009, 05:39 PM
ibautocommunity's Avatar
ibautocommunity ibautocommunity is offline
 
Join Date: Jan 2009
Location: Los Angeles, CA
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Patrick1969 View Post
Thank you, I was successful in changing the background color however I am having difficulties in making the font smaller, what do I need to change in the code, I already updated the 10px to 8 px without any effect as well as tried 10pt and 8pt, I guess I am missing something somewhere.

Thank you for pointing me in the right direction for this one.
Something you can try is replacing the existing line:
<div class='bigusername $thread_alt' style='$thread_bg_color padding: 10px'>

with:
<div class='$thread_alt' style='$thread_bg_color padding: 10px; font-size: 10px'>

This is a quick and dirty way to get it working now. Eventually I want to move all style definitions into a css file and all html created into a template.
Reply With Quote
  #19  
Old 03-27-2009, 06:01 PM
Patrick1969 Patrick1969 is offline
 
Join Date: Mar 2009
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ibautocommunity View Post
Something you can try is replacing the existing line:
<div class='bigusername $thread_alt' style='$thread_bg_color padding: 10px'>

with:
<div class='$thread_alt' style='$thread_bg_color padding: 10px; font-size: 10px'>

This is a quick and dirty way to get it working now. Eventually I want to move all style definitions into a css file and all html created into a template.
Thank you so much for all your help, so far so good, lets see what the users will tell me but I think with the threaded view option everyone will be happy. I will keep my eyes out for new updates.
Reply With Quote
  #20  
Old 03-30-2009, 04:51 PM
Patrick1969 Patrick1969 is offline
 
Join Date: Mar 2009
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

After a weekend of trying it out and testing it, it works really well for the people who prefer to have a Threaded Forum View, now is there a way to keep the original message tree in place has opposed to move it within the threaded view under the post, that we do find a bit confusing at this time. It is great that it has the ability to move the message tree below the post, but that's a step beyond what we are a.) used to and b.) what makes the threaded view so legible for some.

Thank you.
Reply With Quote
  #21  
Old 04-09-2009, 05:08 PM
gct13 gct13 is offline
 
Join Date: Jan 2005
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Patrick1969 View Post
now is there a way to keep the original message tree in place has opposed to move it within the threaded view under the post, that we do find a bit confusing at this time.
That's the way it should be imho in showthread, the post up top, followed by the thread tree below, followed by the reply box.

ibautocommunity - great job, I signed up for you site, the mod looks great. Finally, a true vb threaded view. (And ridiculously simple to install at that)

Feature request -

I would like to specify which forums have which display mode: flat or threaded (forget about the goofy "hybrid"). I would like this as an admin setting, I don't want the users to be able to choose, I think every user should be viewing and replying in the same display mode.

In other words in the admin panel I could specify forum #1 and #2 as flat, and #3 as your threaded.

Thanks again on such a great mod,

Dan
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 06:56 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.04710 seconds
  • Memory Usage 2,321KB
  • Queries Executed 25 (?)
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
  • (9)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete