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

Reply
 
Thread Tools
Article Forums v4.x Details »»
Article Forums v4.x
Version: 4.1.2, by bananalive bananalive is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Forum Display Enhancements - Version: 4.0.x Rating:
Released: 02-27-2010 Last Update: 04-26-2011 Installs: 327
Uses Plugins
Additional Files Translations  
No support by the author.

Turn a forum into an article forum. Sub-forums are turned into categories.
  • Posts/Articles show in searches & in new posts
  • Create as many sub-forums/ categories as you need - categories display in navbar
  • Follows forum permissions
  • Can still rate thread, etc.
  • Different postbits for article and replies (comments) - Optional
  • Choose what to display in postbit for article and comments
  • Choose what to display on articles in vBulletin Options
Installation:
  1. Upload articles.php
  2. Import product file
  3. Create a forum in admincp
  4. Go to vBulletin Options->Article forum Options
Remember to click Mark as Installed to receive updates and support

Download Now

File Type: zip vb_articleforum_v4.1.2.zip (24.3 KB, 1440 views)

Screenshots

File Type: jpg 4_main.jpg (112.3 KB, 0 views)
File Type: jpg 4_subcat.jpg (87.1 KB, 0 views)
File Type: jpg 4_thread.jpg (77.8 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
kylek

Comments
  #332  
Old 04-01-2016, 07:20 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 Cody.9791 View Post
Does this mod work better than the default CMS Article Page that is included with vB4?
No, it's just different. As nice as it is I wouldn't recommend using it, it will screw up any mobile style you might try to use. It was great in its day but if you are going to have mobile users, skip it.
Reply With Quote
  #333  
Old 07-13-2016, 07:05 AM
Ov3rrun Ov3rrun is offline
 
Join Date: Apr 2008
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the mod. Article Forums mod on mobile style dont let to show the forum acting as Article Forum, just blank content when I click on forum.

Is there any incompatibility with mobile style?
Reply With Quote
  #334  
Old 07-13-2016, 07:25 AM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's because there are no templates for the article forum on the mobile style. The mod was created before the mobile style even came with 4.x.

I made a plugin that disables the mod on the mobile style so the content is visible like normal threads and posts.

The only other option is creating custom mobile templates.

the plugin code I wrote was:

Code:
global $vbulletin;
$vbo = &$vbulletin->options;
$vbu = &$vbulletin->userinfo;

if (THIS_SCRIPT == 'articles' AND $vbu['styleid'] == 2)
{
  //Redirect to forumdisplay id 4
  $newurl = 'forumdisplay.php?f=4';
  header( 'Location: ' . $newurl ) ;
}
hook: globala_bootstrap_init_start

the 2 is the styleid of the mobile style and the 4 is the forumid that was the Articles forum.
Reply With Quote
Благодарность от:
MarkFL
  #335  
Old 07-31-2017, 10:01 PM
gnrx gnrx is offline
 
Join Date: Apr 2009
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,
Recently, I activate in my forum the mobile style, I have, the same issue that some user here.
When click in Articles, appears a error message: This content, isn't compatible with mobile style.

BirdOprey5m I add the plugin that you indicate, but in my case, not works, when access to articules forum, appears redirecting always, enter in bucle mode.

Can you help me?

Thanks and regards!
Reply With Quote
  #336  
Old 07-31-2017, 11:17 PM
Rafa-el's Avatar
Rafa-el Rafa-el is offline
 
Join Date: Feb 2010
Location: Nicaragua
Posts: 170
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by gnrx View Post
Hi,
Recently, I activate in my forum the mobile style, I have, the same issue that some user here.
When click in Articles, appears a error message: This content, isn't compatible with mobile style.

BirdOprey5m I add the plugin that you indicate, but in my case, not works, when access to articules forum, appears redirecting always, enter in bucle mode.

Can you help me?

Thanks and regards!
Was the forumID changed?
Reply With Quote
Благодарность от:
gnrx
  #337  
Old 08-01-2017, 05:44 AM
gnrx gnrx is offline
 
Join Date: Apr 2009
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Rafa-el View Post
Was the forumID changed?
Yes, I type, in plugin, my forum ID of article forum (change the 4 for my forum ID).

In other question, when create a plugin, create for vbulletin or article?

And order to run, 5?

Thank you very much!!
Reply With Quote
  #338  
Old 08-02-2017, 05:03 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the forum id (4) in my plugin code needs to match the forumid you specified as the Articles forum.

And the styleid (2) needs to match the forumid of the mobile style.

Adjust both numbers to match the values you use on your forum.
Reply With Quote
  #339  
Old 09-12-2017, 04:09 PM
gnrx gnrx is offline
 
Join Date: Apr 2009
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BirdOPrey5 View Post
the forum id (4) in my plugin code needs to match the forumid you specified as the Articles forum.

And the styleid (2) needs to match the forumid of the mobile style.

Adjust both numbers to match the values you use on your forum.
In the first time, my apologies for the delay in my reply, but this last month, I was go out for holiday.

Well, I attach a screenshot, because I continue with the problem, and I don't know how are the problem

In this image, view my mobile style id:
Are the id: 7



In this other, what are my forum for Articles:
Are "Documentos / Manuales":



In this other, the forum id of articule forums:
Are 76:



And this last, my plugin:


With the forum id and mobile style id.

But, not works, when in my mobile, access to articule forum, appears redirecting in bucle mode.

I don't view what are the problem...

Thanks in advanced.
Reply With Quote
  #340  
Old 09-21-2017, 07:50 AM
gnrx gnrx is offline
 
Join Date: Apr 2009
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No suggestion or idea about my problem?

Regards!!
Reply With Quote
  #341  
Old 03-02-2018, 05:53 AM
BlackxRam BlackxRam is offline
 
Join Date: Aug 2003
Posts: 364
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any place in this mod to collapse the categories at the left? I am trying to find it in templates where I might do this but having no luck. I have like 100 categories that need to be trimmed otherwise the list at the left is way too long.

Any help on a quick alteration would be appreciated!!

Thanks!
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 03:42 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.04976 seconds
  • Memory Usage 2,330KB
  • 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
  • (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
  • (1)pagenav_pagelinkrel
  • (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
  • (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