The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Quick News V2 Details »» | |||||||||||||||||||||||||
Quick News v2
By Adrian at Development Chat Tested on v3.6.1, should work on 3.6.0 and 3.5.x Hey, This is a very simple mod', it allows you to add news/important notes or announcements, on the homepage of your forum. You can enable/disable or add news via the admin panel. The "Quick News" box, matches your forum theme. Just so it doesn't look out of place. New in Version two.
Installation Import the product-quicknews.xml Go to vBulletion Options > Quick News (Read option descriptions before configuring) Template Edit: Open Forum Home Templates > FORUMHOME Find: HTML Code:
<!-- main -->
HTML Code:
<if condition="$vboptions['qnews_enabled'] == 1"> <if condition="$vboptions['qnews_forumhome'] == 1"> <if condition="$vboptions['qnews_guests'] == 1"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> <else /> <if condition="$show['guest']"> <!-- No message for guests --> </if> </if> <if condition="$vboptions['qnews_admin'] == 1"> <if condition="$bbuserinfo[usergroupid] == 6"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> </if> <else /> <if condition="$vboptions['qnews_guests'] == 1"> <if condition="$bbuserinfo[usergroupid] == 1"> <!-- No message for guests, if admin view only is set to no, and guest view is also set to no --> </if> <else /> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> </if> </if> </if> </if> </if> </if> Add at the very bottom: HTML Code:
<if condition="$vboptions['qnews_enabled'] == 1"> <if condition="$vboptions['qnews_everypage'] == 1"> <if condition="$vboptions['qnews_guests'] == 1"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> <else /> <if condition="$show['guest']"> <!-- No message for guests --> </if> </if> <if condition="$vboptions['qnews_admin'] == 1"> <if condition="$bbuserinfo[usergroupid] == 6"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> </if> <else /> <if condition="$vboptions['qnews_guests'] == 1"> <if condition="$bbuserinfo[usergroupid] == 1"> <!-- No message for guests, if admin view only is set to no, and guest view is also set to no --> </if> <else /> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> </if> </if> </if> </if> </if> </if> Upgrading: If you are upfrading from Quick News v1 to v2. Do the following. Import the new product-quicknews.xml (Overwriting old version) Then, open up: Forum Home Template > FORUMHOME (if you installed it in FORUMHOME) Find: HTML Code:
<if condition="$vboptions['qnews_enabled'] == 1"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> </if> HTML Code:
<if condition="$vboptions['qnews_enabled'] == 1"> <if condition="$vboptions['qnews_forumhome'] == 1"> <if condition="$vboptions['qnews_guests'] == 1"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> <else /> <if condition="$show['guest']"> <!-- No message for guests --> </if> </if> <if condition="$vboptions['qnews_admin'] == 1"> <if condition="$bbuserinfo[usergroupid] == 6"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> </if> <else /> <if condition="$vboptions['qnews_guests'] == 1"> <if condition="$bbuserinfo[usergroupid] == 1"> <!-- No message for guests, if admin view only is set to no, and guest view is also set to no --> </if> <else /> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> </if> </if> </if> </if> </if> </if> Find: HTML Code:
<if condition="$vboptions['qnews_enabled'] == 1"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> </if> HTML Code:
<if condition="$vboptions['qnews_enabled'] == 1"> <if condition="$vboptions['qnews_everypage'] == 1"> <if condition="$vboptions['qnews_guests'] == 1"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> <else /> <if condition="$show['guest']"> <!-- No message for guests --> </if> </if> <if condition="$vboptions['qnews_admin'] == 1"> <if condition="$bbuserinfo[usergroupid] == 6"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> </if> <else /> <if condition="$vboptions['qnews_guests'] == 1"> <if condition="$bbuserinfo[usergroupid] == 1"> <!-- No message for guests, if admin view only is set to no, and guest view is also set to no --> </if> <else /> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td align="center" class="tcat">Quick News</td> </tr> <tr> <td class="alt1">$vboptions[qnews_news]</td> </tr> </table> <br> </if> </if> </if> </if> </if> </if> Very easy to install mod', and quite useful. Click install if you use it please. Thanks. Adrian Show Your Support
|
Comments |
#2
|
|||
|
|||
very nice simple mod.
Will be used |
#3
|
||||
|
||||
Seems like a great and handy mod. I guess it's shown to all visitors?
|
#4
|
||||
|
||||
Quote:
Just after i released it, i thought, "Damn, why didn't i make a option for it to be hidden from guests, or only viewable by admins" So, i'm doing that now. Hopefully will update it tomorrow when i have time. |
#5
|
|||
|
|||
Exellent addon. Simplicity is key. As a variation on this, how hard would it be to add multiple announcements that are pulled randomly?
My idea is a box exactly like you've created, but with "tips" or whatever you could put in. The title of the box could be "Did you know?" then each time the box is refreshed, it would display tips on forum use, features, etc. There was another mod that did this, but it pulled from a text file that was too cumbersome to add stuff to by multiple people. |
#6
|
||||
|
||||
thank you nice and small
|
#7
|
|||
|
|||
Sweet, using it.
|
#8
|
|||
|
|||
*INSTALLED* Thanks!
|
#9
|
|||
|
|||
maybe an option to use either bb code or html?
|
#10
|
|||
|
|||
wow nice. ;-) have some ideas for this. can be altered to use for network links, ads, ect like right or left column menu on forum index.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|