Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Forums arranged in columns on forumhome Details »»
Forums arranged in columns on forumhome
Version: 1.2.1, by Xenon Xenon is offline
Developer Last Online: Oct 2023 Show Printable Version Email this Page

Version: 3.0.3 Rating:
Released: 01-08-2004 Last Update: 01-16-2005 Installs: 118
 
No support by the author.

As requested several times, this hack allows you to arrange forums on forumhome in xx columns instead of just one per row as it is in standart vb3.

Look at the screenshot to know what i mean

The design is changeable in the templates of course

I've tested it, and it should work, but as i don't use it myself, i cannot do a longtime test, so if you find any bugs, report them

You can apply the changes to forumdisplay as well if wanted

Show Your Support

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

Comments
  #242  
Old 09-07-2004, 01:41 AM
ambrosious ambrosious is offline
 
Join Date: Jun 2004
Posts: 206
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Rename your gif, or copy and name them forum_8 and forum_9. That worked for me, plus, not repeating the code twice. LOL.
Reply With Quote
  #243  
Old 09-14-2004, 04:03 AM
dune dune is offline
 
Join Date: May 2004
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I can't find any reference with working code for this to work on forumdisplay. The pieces of code listed across this thread don't seem to be complete. Can someone who has it working put it all in one post please?
Reply With Quote
  #244  
Old 09-19-2004, 08:59 PM
D@rkness's Avatar
D@rkness D@rkness is offline
 
Join Date: Sep 2004
Location: Canada
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

First let me say great mod, seen it on few boards and looks real nice when installed. Now let me say boy am I confused, after 17 pages of reading I still haven?t got a firm clue on how to install this hack with the image add-on.

I understand Xenon instructions real clear, but the other bits of code that are here and there in the different post are the problem.

So if some kind sole who has implemented this with the image add-on could shed some light on what needs to be done after Xenon?s installation that would be great.

New at modding and we all have to start somewhere, right?
Reply With Quote
  #245  
Old 09-20-2004, 12:21 PM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok, let me descibe the quick and dirty way, hope it helps.

in the template forumhome_forumbit_columncell you'll find this:

HTML Code:
<img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" />
replace it with:
HTML Code:
<if condition="$forum['forumid'] == x"><img src="path to image for forum x" alt="" border="0" /><else /><img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" /></if>
that code will replace the statusicon for forum with forumid x.
you can do that recursively for all other forums as well

as said, quick but dirty
Reply With Quote
  #246  
Old 09-22-2004, 09:18 PM
eblivion eblivion is offline
 
Join Date: Sep 2004
Posts: 54
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

----- Question 1 ---------------
How do I get the "Sub-Forums:..." to show below the descriptions. I tried using:

<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>

as was used in the forumhome_forumbit_level1_post template, but it doesn't work. Nothing appears where the subforums should be.

----- Question 2 ---------------
How can I get the same affect on the forumdisplay.php page for the subforums listed at the top? I've tried just about every variable I could think of an I can't figure out where to find the different variables used in $forumbits that generates they layout for the subforums on that page.
Reply With Quote
  #247  
Old 09-22-2004, 11:11 PM
D@rkness's Avatar
D@rkness D@rkness is offline
 
Join Date: Sep 2004
Location: Canada
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ty for the reply, I managed to get it installed.

See attached.

Thanks again for a great mod.
Reply With Quote
  #248  
Old 09-24-2004, 02:11 PM
jesse jesse is offline
 
Join Date: Mar 2004
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i get this error
Fatal error: Call to undefined function: construct_forum_columns() in /home/causeyjr/public_html/forum/includes/functions_forumlist.php on line 272

I upload the default functions_forumlist and it seems to get rid of the error any help?
Reply With Quote
  #249  
Old 09-24-2004, 05:41 PM
aranthorn's Avatar
aranthorn aranthorn is offline
 
Join Date: Jun 2004
Location: Chicago
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

looks like when you modified the functions_forumlist, you missed a semicolon. This is a very typical error when doing mods, just try re-editing and being very careful to put all text exactly where instructed. I've done this to myself a few times
Reply With Quote
  #250  
Old 09-24-2004, 10:53 PM
D@rkness's Avatar
D@rkness D@rkness is offline
 
Join Date: Sep 2004
Location: Canada
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

When you are changing yout forumlist.php, make sure you are adding the new function to the end of the file and not after the first change.

The install.txt indicates "then add this new function to the file:", copy the new function then add it to the end of your forumlist.php and you should be good.
Reply With Quote
  #251  
Old 09-26-2004, 01:36 PM
jesse jesse is offline
 
Join Date: Mar 2004
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by D@rkness
When you are changing yout forumlist.php, make sure you are adding the new function to the end of the file and not after the first change.

The install.txt indicates "then add this new function to the file:", copy the new function then add it to the end of your forumlist.php and you should be good.

that seem to work mabe end of page would have been better understood thanks but now
all forums are collasped
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 08:35 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.06180 seconds
  • Memory Usage 2,315KB
  • 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
  • (2)bbcode_html
  • (1)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
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (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