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
  #502  
Old 06-09-2009, 08:04 AM
bananalive bananalive is offline
 
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Saviour View Post
This is what I'd like to do...

I want to edit the Article Tools so that the only thing that shows up is the link to Edit the Article. Is this possible?
open template af_firstpost

Find and delete
HTML Code:
<if condition="$show['closethread'] && $show['af_articletools']">
	<div class="alt2 smallfont" style="padding: 5px;  margin: 5px 5px 0px 5px;">
	<a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$post[postid]" rel="nofollow">$vbphrase[post_a_comment]</a>
	</div>
	</if>
find and delete
HTML Code:
<if condition="$show['member'] && $show['af_articletools']">
	<div class="alt2 smallfont" style="padding: 5px; margin: 0px 5px 0px 5px;">
		<if condition="$show['subscribed']">
			<a href="subscription.php?$session[sessionurl]do=removesubscription&amp;t=$post[threadid]" rel="nofollow">$vbphrase[unsubscribe_from_this_thread]</a>
		<else />
			<a href="subscription.php?$session[sessionurl]do=addsubscription&amp;t=$post[threadid]" rel="nofollow">$vbphrase[subscribe_to_this_thread]</a>
		</if>
	</div>
	</if>
	<if condition="$threadinfo['replycount'] && $show['af_articletools']">
	<div class="alt2 smallfont" style="padding: 5px; margin: 0px 5px 0px 5px;">
			<a href="#comments" rel="nofollow">$vbphrase[jump_to_comments]</a>
	</div>
	</if>
Quote:
I also want the threadrate link to appear above or below it.

Find and delete:
HTML Code:
<if condition="$show['threadrating']">
		<div class="" id="threadrating" style="float: right;">
			<a href="$show[nojs_link]#goto_threadrating"><span id="threadrating_current"><if condition="$show['rating']"><img class="inlineimg" src="$stylevar[imgdir_rating]/rating_$thread[rating].gif" alt="<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[thread_rating_x_votes_y_average]</phrase>" border="0" /><else />$vbphrase[rate_thread]</if></span></a>
			<if condition="$show['popups']"><script type="text/javascript"> vbmenu_register("threadrating"); </script></if>
		</div>
	</if>
-----------------------------------

Find:
HTML Code:
<if condition="$post['editlink'] && $show['af_articletools']">
	<div class="alt2 smallfont" style="padding: 5px;  margin: 0px 5px 0px 5px;">
				<a href="$post[editlink]">$vbphrase[edit_article]</a>
	</div>
	</if>
Below add:

HTML Code:
<if condition="$show['threadrating']">
		<div class="alt2 smallfont" style="padding: 5px;  margin: 0px 5px 0px 5px;" id="threadrating">
			<a href="$show[nojs_link]#goto_threadrating"><span id="threadrating_current"><if condition="$show['rating']"><img class="inlineimg" src="$stylevar[imgdir_rating]/rating_$thread[rating].gif" alt="<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[thread_rating_x_votes_y_average]</phrase>" border="0" /><else />$vbphrase[rate_thread]</if></span></a>
			<if condition="$show['popups']"><script type="text/javascript"> vbmenu_register("threadrating"); </script></if>
		</div>
	</if>
Reply With Quote
  #503  
Old 06-09-2009, 08:08 AM
bananalive bananalive is offline
 
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by maidos View Post
is it possible to have rss support for the article
You can use rss support for forum. See https://vborg.vbsupport.ru/showpost....&postcount=311
Reply With Quote
  #504  
Old 06-09-2009, 11:47 AM
Saviour's Avatar
Saviour Saviour is offline
 
Join Date: Apr 2007
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks, bananalive...
Reply With Quote
  #505  
Old 06-09-2009, 12:34 PM
Bram H Bram H is offline
 
Join Date: Jul 2007
Location: The Netherlands
Posts: 286
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by masterb44hz View Post
It would be nice if there was an vBa Integration for this great mod
I am not good a coding myself therefore i would be glad if someone could do it.
+1

I have tried to import the article.php and make a module of it and to a certain level it works great as a frontpage, but it excludes all the other modules you have running on your portal

But i have a feeling somebody is gonna help us out, would be the best vBa addition since sliced bread
Reply With Quote
  #506  
Old 06-09-2009, 03:26 PM
bananalive bananalive is offline
 
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Bram H View Post
+1

I have tried to import the article.php and make a module of it and to a certain level it works great as a frontpage, but it excludes all the other modules you have running on your portal

But i have a feeling somebody is gonna help us out, would be the best vBa addition since sliced bread
Try importing this vba module.
Attached Files
File Type: zip vba_module_recentarticles.zip (5.5 KB, 22 views)
Reply With Quote
  #507  
Old 06-09-2009, 07:01 PM
dancue dancue is offline
 
Join Date: Feb 2008
Posts: 569
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Cool, All you need now is a version check url so we can stay up to date with all the updates...

Reply With Quote
  #508  
Old 06-09-2009, 07:17 PM
dancue dancue is offline
 
Join Date: Feb 2008
Posts: 569
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bananalive View Post
Try importing this vba module.
Can you align the info on this module? Like you did for the index page of the articles?
Reply With Quote
  #509  
Old 06-10-2009, 08:21 AM
bananalive bananalive is offline
 
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by dancue View Post
Can you align the info on this module? Like you did for the index page of the articles?
I missed out line.

Demo: http://www.bananalive.co.cc/portal.php?pageid=afexample
Attached Files
File Type: zip vba_module_recentarticles v1.1.zip (5.5 KB, 24 views)
Reply With Quote
  #510  
Old 06-10-2009, 10:55 AM
dancue dancue is offline
 
Join Date: Feb 2008
Posts: 569
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bananalive View Post
Good, but now the articles aligned that do not have an image have the titles indented.
Reply With Quote
  #511  
Old 06-10-2009, 01:29 PM
bananalive bananalive is offline
 
Join Date: Oct 2007
Location: UK
Posts: 2,802
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by dancue View Post
Good, but now the articles aligned that do not have an image have the titles indented.
This is only occuring for one of your articles due to image: http://www.billsretroworld.com/RetroJoe_Louis.jpg being non-existent. look at page2 of your articles to confirm this.
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 09:12 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.05231 seconds
  • Memory Usage 2,377KB
  • 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
  • (5)bbcode_html
  • (9)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
  • (2)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
  • (7)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