The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
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. |
#2
|
||||
|
||||
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. |
#3
|
|||
|
|||
Quote:
|
#4
|
||||
|
||||
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> 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> 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. |
#5
|
|||
|
|||
Quote:
|
#6
|
||||
|
||||
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> |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|