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

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

Category: Forum Display Enhancements - Version: 3.8.x Rating:
Released: 04-18-2009 Last Update: 07-21-2009 Installs: 640
Uses Plugins Auto-Templates
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
  • Follows forum permissions
  • Can still rate thread, etc.
  • Different postbits for article and replies (comments)
  • Choose what to display in postbit for article and comments
  • Choose what to display on articles in vBulletin Options
* Not compatible with 3.7.x forums *

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
Possible Future Additions:
  • Make article collapsible
  • Allow multiple article forums
Translations:

Download Now

File Type: zip vb_articleforum v1.9.zip (19.4 KB, 2551 views)

Screenshots

File Type: jpg articles.jpg (97.6 KB, 0 views)
File Type: jpg phpm5XJDPAM.jpg (59.9 KB, 0 views)
File Type: jpg articles_altdisplay.jpg (102.2 KB, 0 views)
File Type: jpg phpdNSpFGAM.jpg (98.2 KB, 0 views)

Show Your Support

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

Comments
  #572  
Old 06-19-2009, 02:41 AM
Budweiser's Avatar
Budweiser Budweiser is offline
 
Join Date: Jan 2008
Location: West Virginia
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by EagleNick View Post
How can I move the contents of the left sidebar to the right sidebar, so that the main (middle) column can be larger/wider?

Thanks.
Yes. That would be nice...
Reply With Quote
  #573  
Old 06-21-2009, 05:20 PM
asiaphoto asiaphoto is offline
 
Join Date: Nov 2008
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Pardon my limited knowledge in PHP

how do modify articles.php so that it can function as a index.php file outside of my forum directory?

here's my problem in action

http://www.asiaphoto.com/forum/articles.php works

but

this doesn't work

http://www.asiaphoto.com/articles.php



i know i need to rewrite the paths in articles.php but i don't know which ones.


Dear Bananalive or other fellow coders, could you pls help me? thanks in advance.
Reply With Quote
  #574  
Old 06-21-2009, 05:52 PM
bananalive bananalive is offline
 
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by asiaphoto View Post
Pardon my limited knowledge in PHP

how do modify articles.php so that it can function as a index.php file outside of my forum directory?

here's my problem in action

http://www.asiaphoto.com/forum/articles.php works

but

this doesn't work

http://www.asiaphoto.com/articles.php



i know i need to rewrite the paths in articles.php but i don't know which ones.


Dear Bananalive or other fellow coders, could you pls help me? thanks in advance.
Find in articles.php:
PHP Code:
define('THIS_SCRIPT''articles'); 
After add:
PHP Code:
$forumpath '/home/site/public_html/forum';
chdir($forumpath); 
altering $forumpath to the correct forum path
Reply With Quote
  #575  
Old 06-21-2009, 05:55 PM
bananalive bananalive is offline
 
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by EagleNick View Post
How can I move the contents of the left sidebar to the right sidebar, so that the main (middle) column can be larger/wider?

Thanks.
Open template: af_articles

find and delete:
HTML Code:
<td nowrap="nowrap" style="vertical-align: top;">$a_left</td>
Find
HTML Code:
<td nowrap="nowrap" style="vertical-align: top;">$a_right</td>
Replace with:
HTML Code:
<td nowrap="nowrap" style="vertical-align: top;">$a_left $a_right </td>

Repeat for template: af_articles_alt
Reply With Quote
  #576  
Old 06-21-2009, 06:01 PM
bananalive bananalive is offline
 
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by i-comers.com View Post
I found some problem for this modification.

1. article poster Post Count not show / Option in ACP not working display / hidden postcount
2. check box for moving/deleted thread/article poster not available.
3. attachment thumbnail for unregister/guest can't view attachment thumbnail

I hope this problem can fix thanks before. this modification is good idea.
Post Count refers to the #1 or #45 of post

Posts refers to the users posts in postbit

Not all postbit have if condition around the posts.
Reply With Quote
  #577  
Old 06-21-2009, 11:24 PM
valendono valendono is offline
 
Join Date: Feb 2008
Posts: 113
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can I give u several suggestions or requests ?

1. How about if articles page with selected forum instead 1 forum category and child forum ?
2. Can we have archive of old news (page 2) with title only on bottom of articles.php instead just go to next page ?
3. If you can make `related news' in every articles thread, it should be great.
4. [Bugs ?] Some of comments now showing on page articles.php but showing 10 (real) on showthread.php
5. Showing top 5 mod/admin selected thread on header of articles.php
6. Thanks button on thread starter missing if you use mod vS-Hide Thanks

Thanks.. nice mod
Reply With Quote
  #578  
Old 06-22-2009, 02:09 AM
asiaphoto asiaphoto is offline
 
Join Date: Nov 2008
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bananalive View Post
Find in articles.php:
PHP Code:
define('THIS_SCRIPT''articles'); 
After add:
PHP Code:
$forumpath '/home/site/public_html/forum';
chdir($forumpath); 
altering $forumpath to the correct forum path

thanks Bananalive for helping me with this.

it works, but i encounter another problem


see
http://www.asiaphoto.com/forum/articles.php

and the index.php i'v improved with your help
http://www.asiaphoto.com/indextest.php


the parts not working
(1) forum logo is not showing now
(2) at the top left, instead of the folder icons,
it shows "Go Back" and "Reload this page"

(3) i appear not logged in on my index page
it looks like the registeration and logged in part won't work too.


(4) when i click on any links, i get error404 because the links are not reflecting the right path.
Reply With Quote
  #579  
Old 06-22-2009, 08:17 AM
nohuhu nohuhu is offline
 
Join Date: Dec 2008
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bananalive,

any good news regarding my feature request?
Reply With Quote
  #580  
Old 06-22-2009, 09:21 AM
nohuhu nohuhu is offline
 
Join Date: Dec 2008
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bananalive,

one more feature request: i think it would be beneficial to have ability to use article postbit template instead of comment template for both first post and subsequent posts in a thread, selectible per thread. for example, on my board there are several knowledgeable users who prefer to post something useful in a closed thread (to avoid comments) in blog-like fashion, post after post. however such a thread is not a blog really, it's more like an article consisting of many parts, updated time after time. right now with this mod that would look like an article (first post) and several comments. if it would be possible to set some option upon article creation and use article postbit for all posts in that thread, that would be terrific.

p.s. and even more terrific would be an option to change default "posts per page" number. some articles tend to be very long... and that would solve the problem of article pagination, well of a sort.
Reply With Quote
  #581  
Old 06-23-2009, 09:10 AM
Samsine Samsine is offline
 
Join Date: Sep 2008
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for your great MOD



Regards
Samsine
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 12:00 AM.


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.09561 seconds
  • Memory Usage 2,363KB
  • 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
  • (3)bbcode_html
  • (4)bbcode_php
  • (5)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
  • (3)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (1)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
  • (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_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