Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Design and Graphics Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 12-14-2010, 09:36 PM
HabboForum.NET HabboForum.NET is offline
 
Join Date: Oct 2010
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Is it possible?

Hiya, I'm wanting my vbulletin license to go to a new lenth of use, I'm wanting to use it as a collection of website links however I have no idea on how to modify the forum skin to make the changes I want, below are 2 pictures showing before the change and the new way I want it..



How do I change it so that the forum home shows "Owned by" "Launched" "Views" without the normal words? and How do I change it so that it shows the owner of them websites?

Also just to add "Website url" once clicked will direct you to their website.
Reply With Quote
  #2  
Old 12-15-2010, 12: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

Well to make the website URL in Forum Manager you'd add a new forum and put the URL into both the Forum Title and the Forum Link fields. Your subforums will display as you have it in the photo if you go to vBulletin Options -> Forum Listing Display Options and set the depths on forumhome and forumdisplay to 2.

As for the other changes those would require extensive template modifications in forumbits... I will try some things and get back to you on that.
Reply With Quote
  #3  
Old 12-15-2010, 01:55 PM
HabboForum.NET HabboForum.NET is offline
 
Join Date: Oct 2010
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BirdOPrey5 View Post
Well to make the website URL in Forum Manager you'd add a new forum and put the URL into both the Forum Title and the Forum Link fields. Your subforums will display as you have it in the photo if you go to vBulletin Options -> Forum Listing Display Options and set the depths on forumhome and forumdisplay to 2.

As for the other changes those would require extensive template modifications in forumbits... I will try some things and get back to you on that.
Thank you.
Reply With Quote
  #4  
Old 12-15-2010, 09:16 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK I got the text for the forum owner/manager or whatever you want to display where the "Last Post Info" would otherwise have been shown...

You will need to edit the templates forumhome_forumbit_level2_post and forumhome_forumbit_level1_post, they are usually (nearly?) identical...

Change:
Code:
<td class="alt2">$forum[lastpostinfo]</td>
to:
Code:
<if condition="$forum[forumid] == 8">
          <td class="alt2">Owner: John Smith<br />Manager: Jane Doe</td>
          <else />
          <td class="alt2">$forum[lastpostinfo]</td>
          </if>
But change "8" to the forumid assigned to your link forum.
Obviously change the text "Owner: John Smith<br />Manager: Jane Doe" to your needs. The <br /> tag is what makes a new line when displayed in a web browser. You can use standard HTML to color the fonts like you had in your example image.

Make additional <if> statements for additional forum-links.

This is going to require a template edit each time you have to update the information so hopefully it's not something you need to do often.
Reply With Quote
  #5  
Old 12-16-2010, 12:11 PM
HabboForum.NET HabboForum.NET is offline
 
Join Date: Oct 2010
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BirdOPrey5 View Post
OK I got the text for the forum owner/manager or whatever you want to display where the "Last Post Info" would otherwise have been shown...

You will need to edit the templates forumhome_forumbit_level2_post and forumhome_forumbit_level1_post, they are usually (nearly?) identical...

Change:
Code:
<td class="alt2">$forum[lastpostinfo]</td>
to:
Code:
<if condition="$forum[forumid] == 8">
          <td class="alt2">Owner: John Smith<br />Manager: Jane Doe</td>
          <else />
          <td class="alt2">$forum[lastpostinfo]</td>
          </if>
But change "8" to the forumid assigned to your link forum.
Obviously change the text "Owner: John Smith<br />Manager: Jane Doe" to your needs. The <br /> tag is what makes a new line when displayed in a web browser. You can use standard HTML to color the fonts like you had in your example image.

Make additional <if> statements for additional forum-links.

This is going to require a template edit each time you have to update the information so hopefully it's not something you need to do often.
Thanks, But i'm wanting each forum link to display different owners =\ if that is at all possible? I don't want em to all show the same owner lol =\ I'm sure it's possible, even If I need to post a thread and just write the name "Frank" to make it show on each forum differently. =\
Reply With Quote
  #6  
Old 12-16-2010, 01:12 PM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes it is possible, each link will have it's own forum id number so you just make an extra conditional for each forum id... in VB3 you can't use "elseif" so you have to nest conditionals...
Explained here.

But basically for two different forums links you'd use:
Code:
          <if condition="$forum[forumid] == 8">
                <td class="alt2">Owner: John Smith<br />Manager: Jane Doe</td>
          <else />
                  <if condition="$forum[forumid] == 9">
                  <td class="alt2">Owner: Joe Johnson<br />Manager: Mary White</td>
                  <else />
                  <td class="alt2">$forum[lastpostinfo]</td>
                  </if>
          </if>
That would give you two forum links (forumid 8 and forumid 9) with 2 different owners/managers.
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 07:15 AM.


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.04193 seconds
  • Memory Usage 2,214KB
  • Queries Executed 11 (?)
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)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (5)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (6)post_thanks_box
  • (6)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (6)post_thanks_postbit_info
  • (6)postbit
  • (6)postbit_onlinestatus
  • (6)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete