Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Announcements new Table Details »»
Announcements new Table
Version: 1.00, by Mr Pink Mr Pink is offline
Developer Last Online: May 2007 Show Printable Version Email this Page

Version: 3.6.5 Rating:
Released: 03-13-2007 Last Update: Never Installs: 29
Template Edits
Is in Beta Stage  
No support by the author.

This is a simple code change for announcements.


Preview:

http://img251.imageshack.us/img251/8...cementsfl5.jpg

Modification:

Go into the FORUMDISPLAY template.
(AdminCp -> Styles & Templates -> Edit Templates -> FORUMDISPLAY)

Find:

Code:
$announcebits
Delete it.

Find:

Code:
$header
$navbar
Below add:

Code:
 
<!-- Announcements -->
<if condition="$announcebits">
   <table align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="50%"> 
   <tr> 
       <td class="tcat"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('icons_panel')">
       <img id="collapseimg_icons_panel" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_icons_panel].gif" alt="" border="0" />
       </a><b><center>Announcements</center></b></td> 
       <tbody id="collapseobj_icons_panel" style="$vbcollapse[collapseobj_icons_panel]">
       <tr>
           <td bgcolor="#F5F5FF"><div><span style="color: black;">
           <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
               $announcebits
           </table>
           </a></span></div>
           </a></span></div> 
           </td> 
       </tr>
       </td>
   </tr> 
   </table>
<br />
</if>
<!-- /Announcements -->
<br />
------------------------------------------
I have used some deprecated tags, in this modification. When I will have free time I will release it with the correct code.
------------------------------------------
Code Updated & Optimized
Thanks goes to
Sidewindr [View Post]

Show Your Support

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

Comments
  #2  
Old 03-14-2007, 06:11 PM
bashy bashy is offline
 
Join Date: Nov 2005
Posts: 2,544
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Cheers m8 looks a lot nicer and more noticeable, well done!!
Reply With Quote
  #3  
Old 03-14-2007, 09:09 PM
Tanabe Tanabe is offline
 
Join Date: Feb 2007
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Awsome Thanks ^^
Reply With Quote
  #4  
Old 03-14-2007, 11:50 PM
Sidewindr Sidewindr is offline
 
Join Date: Oct 2002
Location: Australia
Posts: 174
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I made the following changes to the code so the Announcements table would not show up if there were no announcements. Also fixed up some missing table data and row end tags.

Code:
<!-- Announcements -->
<if condition="$announcebits">
	<table align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="50%"> 
	<tr> 
		<td class="tcat"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('icons_panel')">
		<img id="collapseimg_icons_panel" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_icons_panel].gif" alt="" border="0" />
		</a><b><center>Announcements</center></b></td> 
		<tbody id="collapseobj_icons_panel" style="$vbcollapse[collapseobj_icons_panel]">
		<tr>
			<td bgcolor="#F5F5FF"><div><span style="color: black;">
			<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" id="threadslist">
				$announcebits
			</table>
			</a></span></div>
			</a></span></div> 
			</td> 
		</tr>
		</td>
	</tr> 
	</table>
<br />
</if>
<!-- /Announcements -->
Reply With Quote
  #5  
Old 03-15-2007, 02:37 AM
dbirosel dbirosel is offline
 
Join Date: Feb 2007
Location: San Diego
Posts: 587
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice, i will add this soon to my boards. It does make it more noticeable.
Reply With Quote
  #6  
Old 03-15-2007, 08:31 AM
Mr Pink's Avatar
Mr Pink Mr Pink is offline
 
Join Date: Oct 2006
Location: [Italy]
Posts: 189
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks, Sidewindr.
Code updated, but still not complete.
Reply With Quote
  #7  
Old 03-15-2007, 11:04 AM
Mr Pink's Avatar
Mr Pink Mr Pink is offline
 
Join Date: Oct 2006
Location: [Italy]
Posts: 189
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code optimized.
Reply With Quote
  #8  
Old 03-15-2007, 04:10 PM
bashy bashy is offline
 
Join Date: Nov 2005
Posts: 2,544
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

do you know of a way to show more than 1 announcement in the box?
Also is there a way to have the announcements to show in the forumhome?
Reply With Quote
  #9  
Old 03-15-2007, 06:58 PM
Mr Pink's Avatar
Mr Pink Mr Pink is offline
 
Join Date: Oct 2006
Location: [Italy]
Posts: 189
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bashy View Post
do you know of a way to show more than 1 announcement in the box?
What you mean exactly with this? Here, https://vborg.vbsupport.ru/attachmen...7&d=1173895817, for example, it show two announcements.
Maybe you mean that you have this: AdminCp -> vBOptions -> Forum Display Options (forumdisplay) -> Group Announcements.. set to 'Yes'. If so, set it to 'No'.


Quote:
Also is there a way to have the announcements to show in the forumhome?
For now I'm not able to do that, sorry.
Reply With Quote
  #10  
Old 03-16-2007, 07:23 PM
Dark_Sirius Dark_Sirius is offline
 
Join Date: Aug 2006
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice. Installed.
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 06:09 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.04987 seconds
  • Memory Usage 2,297KB
  • Queries Executed 23 (?)
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
  • (4)bbcode_code
  • (2)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
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)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