Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons

Reply
 
Thread Tools
All Topic / Master Forums - View Threads from Multiple Forums in a Master Forums Details »»
All Topic / Master Forums - View Threads from Multiple Forums in a Master Forums
Version: 2.1, by BirdOPrey5 (Senior Member) BirdOPrey5 is offline
Developer Last Online: Aug 2023 Show Printable Version Email this Page

Category: Forum Display Enhancements - Version: 3.8.x Rating:
Released: 06-27-2010 Last Update: 03-02-2011 Installs: 48
Supported Uses Plugins Auto-Templates
Translations  

This a complete and total upgrade to version 2.0!

This mod is now an importable product, there are no more manual file edits.

In addition this mod will be able to auto edit your templates if you run the standard threadbit template, otherwise there are instructions in the zip file for manual template edits if needed.

What does this mod do? - Basically this is only the most awesomest mod ever for vBulletin. You can now view threads from other forums in "Master Forums" you designate.

For example on my site "Off Topic" is my "Master Forum" and virtually all other forums are assigned to the Master Forum offering user's the ability to browse 1 forum while seeing threads from many others.

New in version 2.0: You can now have multiple master forums.

See the screen shots for an example.

All instructions are included in the zip file.

As pointed out by phpdesk you must have at least 1 thread in your master forum for this to work.

I have tested this on VB 3.8.6 and am sure it will work on all 3.8 versions. I also strongly believe it will work as far back as VB 3.6 but can't test it myself.

This will not work for vBulletin 4.0, do not try to install it. The VB4 Version is here.

If you used the old version revert your forumdisplay.php file back to it's original condition before installing.

Please Mark as Installed if you use this.

You can mostly ignore all posts in this thread up to post #28. Old posts are not longer relevant to this new version. (Note: post #7 is still relevant if you have only 1 master forum.)

Upgrade to Version 2.1 (March 3, 2011)
Fixes a bug where the master forum wouldn't display as many pages as there were posts.

Download Now

File Type: zip All Topic - Master Forums by BOP5v21.zip (4.0 KB, 194 views)

Screenshots

File Type: jpg ss_masterforum_set.jpg (86.0 KB, 0 views)
File Type: jpg ss_masterforum_vb3.jpg (137.3 KB, 0 views)

Show Your Support

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

Comments
  #62  
Old 10-25-2011, 03:16 AM
James T Brock James T Brock is offline
 
Join Date: Sep 2004
Posts: 273
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BirdOPrey5 View Post
One of two things is the problem...

1) You have another mod using the hook forumdisplay_query_threadscount. In plugin manager see if any other plugin is using that hook and if so let me know which mod and I'll take a look.
vbOptomize Pro. I confirmed it's what's causing the issue, when I disable that hook it works.

Anyway to have them both working together? This is the code in that hook location...

Code:
if (class_exists('vb_optimise'))
{
	$vars = array(
		'lastread'		=> $lastread,
		'hook_query_fields'	=> $hook_query_fields,
		'tachyjoin'		=> $tachyjoin,
		'hook_query_joins'	=> $hook_query_joins,
		'forumid'		=> $foruminfo['forumid'],
		'prefix_filter'		=> $prefix_filter,
		'visiblethreads'	=> $visiblethreads,
		'globalignore'		=> $globalignore,
		'limitothers'		=> $limitothers,
		'datecut'		=> $datecut,
		'hook_query_where'	=> $hook_query_where,
	);

	vb_optimise::cache('forumdisplaysub', $db, $vars);
}
Reply With Quote
  #63  
Old 10-25-2011, 10:19 AM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try changing the execution order of the plugin on forumdisplay_query_threadscount.

It is usually "5" - try changing it to "2" or "8" and see if either makes a difference.
Reply With Quote
  #64  
Old 10-29-2011, 07:13 PM
James T Brock James T Brock is offline
 
Join Date: Sep 2004
Posts: 273
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you, changing the execution order did fix the issue. One last question, I noticed in the 4.0 version of this mod there is a way to have sticky threads show in the master forum, how do you do it in the 3.8 version of the mod?
Reply With Quote
Благодарность от:
BirdOPrey5
  #65  
Old 10-29-2011, 08:31 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I haven't released the updated version for 3.8 yet. If you want to show stickies you can edit the two forumdisplay_query_ plugins...

Find all "sticky = 0" and change it to "sticky = 1" in each plugin.
Reply With Quote
  #66  
Old 11-01-2011, 02:10 AM
James T Brock James T Brock is offline
 
Join Date: Sep 2004
Posts: 273
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you do that ALL threads disappear except for the stickies.
Reply With Quote
  #67  
Old 11-01-2011, 10:59 AM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry. I didn't have this version still installed on my test servers.

Change "sticky = 0" to "sticky = 0 OR sticky = 1" in both plugins
Reply With Quote
Благодарность от:
James T Brock
  #68  
Old 11-17-2011, 02:07 PM
punchbowl punchbowl is offline
 
Join Date: Nov 2006
Posts: 505
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

it shows threads in the list even if the member has no perms. i.e. if I include nsfw and mod forums in my master forum users will see those threads in the list even if they haven't got perms to see them.

They can't actually open the threads but they still appear in the list.

Is that the same in the vb4 version?

tia

I kinda like it this ^^^ way tbh BUT in the new version if you did * would you be showing (for instance) mod only thread titles in your master forum.

Edit: Get well soon man!
Reply With Quote
  #69  
Old 11-19-2011, 05:49 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by punchbowl View Post
it shows threads in the list even if the member has no perms. i.e. if I include nsfw and mod forums in my master forum users will see those threads in the list even if they haven't got perms to see them.

They can't actually open the threads but they still appear in the list.

Is that the same in the vb4 version?

tia

I kinda like it this ^^^ way tbh BUT in the new version if you did * would you be showing (for instance) mod only thread titles in your master forum.

Edit: Get well soon man!
Thank you for your support punchbowl.

The VB4 version behaves the same way and even with the updated code it will show the thread titles for each forum regardless of the permission to view- but they can't view the actual thread without permission. Offhand I am not sure how I would be able to hide the threads based on permissions without more queries.
Reply With Quote
  #70  
Old 11-20-2011, 06:29 PM
punchbowl punchbowl is offline
 
Join Date: Nov 2006
Posts: 505
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BirdOPrey5 View Post
Thank you for your support punchbowl.

The VB4 version behaves the same way and even with the updated code it will show the thread titles for each forum regardless of the permission to view- but they can't view the actual thread without permission. Offhand I am not sure how I would be able to hide the threads based on permissions without more queries.
Cheers. No more queries on my account though! For what I need, the product is perfect.
Reply With Quote
  #71  
Old 02-22-2013, 04:37 PM
azn_romeo_4u azn_romeo_4u is offline
 
Join Date: Feb 2006
Posts: 227
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you. This is a very interesting mod.
Reply With Quote
Благодарность от:
BirdOPrey5
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 07:58 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.06160 seconds
  • Memory Usage 2,340KB
  • 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
  • (1)bbcode_code
  • (3)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
  • (3)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (3)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
  • 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
  • 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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete