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
Information Bar for Guests Details »»
Information Bar for Guests
Version: 1.04, by Slapyo Slapyo is offline
Developer Last Online: Apr 2013 Show Printable Version Email this Page

Version: 3.0.10 Rating:
Released: 11-27-2004 Last Update: 12-02-2004 Installs: 128
Template Edits
Additional Files  
No support by the author.

Information Bar for Guests (for version 3.5.0)

What is this?
This will display an information bar across the top of the browser window that appears to be like the Information Bar that is from Windows XP SP2. When the user clicks it they will be sent to the registration page for your forums. This is not a popup.

If the user is logged in then this will not display at all. This only appears on the page for people who are not logged in.

http://www.veteransresources.org/forums/index.php? - Example Site

How many changes?
  • Uploads: 4
    • infobar.css
    • infobar.wav (optional)
    • warning.gif
    • warning2.gif
  • File edits: 0
  • Template edits: 2
    • headinclude
    • header
  • New templates: 0
  • Queries: 0

Version History
  • 1.04
    • added info bar sound (Lionel)
  • 1.03
    • no javascript required now
    • works in Firefox
  • 1.02
    • removed information bar any browser other than IE
  • 1.01
    • removed information bar from login and registration pages (Lionel)
  • 1.00
    • initial release

Screenshots
Guest on forums
Guest hovering over info bar

Please click Install this Modification if you like it.

Show Your Support

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

Comments
  #212  
Old 10-07-2005, 05:35 AM
Slapyo Slapyo is offline
 
Join Date: Feb 2004
Location: Rancho Cucamonga
Posts: 370
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

https://vborg.vbsupport.ru/showthread.php?t=97150

There is my thread for this hack for version 3.5.0 ... go click install there if you installed it!!
Reply With Quote
  #213  
Old 10-07-2005, 01:11 PM
RaceJunkie RaceJunkie is offline
 
Join Date: Jun 2005
Posts: 371
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Slapyo
well if you do and don't mind testing it out lemme know! thanks.

i installed firefox at work but wasn't blown away with it so i kept IE here at home. the only thing i like is the tabbed browsing.
Try avantbrowser.com tabbed also
Reply With Quote
  #214  
Old 10-25-2005, 03:32 AM
cmiller1014 cmiller1014 is offline
 
Join Date: May 2004
Posts: 248
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey guys... I have a quick question.

I love the way this looks and I want to have one that shows up there when the user is browsing a private forum. As it stands, I have a secondary usergroup that about 10 people are in. Those 10 people can view 1 forum that noone else can. I would like a bar like this to show at the top if their secondary usergroup = a certain number.

I just dont want them thinking these posts are in the open forum because obviously it appears to them as though they are.

What would the conditional be for that? I can figure the rest out.

THANKS IN ADVANCE! THIS MEANS A LOT!
Reply With Quote
  #215  
Old 10-25-2005, 04:54 AM
aciurczak aciurczak is offline
 
Join Date: Jun 2005
Posts: 154
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'd try something like:

Code:
<if condition=("$bbuserinfo['usergroupid']" = groupIDthatyou'recheckingfor)>.
Add multiple conditionals if you need multiple groups. Put it in both the headinclude and the header templates.
Reply With Quote
  #216  
Old 10-27-2005, 11:21 AM
The Geek's Avatar
The Geek The Geek is offline
 
Join Date: Sep 2003
Location: Behind you
Posts: 2,779
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just a quick note...

I, like many of you get tired of constantly seeing the Help! emails about 'Ive registered but cant post' only to find that they typically didnt read that they need to activate their account.

I have tweaked the template changes here a touch to give these guys a friendly nudge:

Header:
PHP Code:
<if condition="($show['guest'] || is_member_of($bbuserinfo,3)) AND (THIS_SCRIPT != 'register') AND (THIS_SCRIPT != 'login')">
<
table width="100%" border="0" cellspacing="0" cellpadding="0">
<
tr>
<
td width="100%">
<
div id="infobar"><if condition="$show['guest']"><a href="http://www.thenailgeek.com/register.php?referrerid=1">It appears you are not yet a geek!. To join the worlds largest community of nail professionalsclick here...</a><else />
<
a href="http://www.thenailgeek.com/register.php?do=requestemail">Thanks for registeringPlease follow the activation email instructions sent to you or click here to resend them</a>
</if><
embed src="http://www.thenailgeek.com/infobar.wav" autostart="true" loop="0" hidden="true"></embed></div>
</
td>
</
tr>
</
table
</if> 
headerinclude:

PHP Code:
<if condition="($show['guest'] || is_member_of($bbuserinfo, 3)) AND (THIS_SCRIPT != 'register') AND (THIS_SCRIPT != 'login')">
<
link rel="stylesheet" href="http://www.thenailgeek.com/infobar.css" type="text/css" />
</if> 
Anyhooo. It sure helps prevent those annoying emails!

Great mod. I love it.
Reply With Quote
  #217  
Old 11-08-2005, 06:40 PM
MissKalunji's Avatar
MissKalunji MissKalunji is offline
 
Join Date: Aug 2003
Location: Canada
Posts: 2,845
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by The Geek
Just a quick note...

I, like many of you get tired of constantly seeing the Help! emails about 'Ive registered but cant post' only to find that they typically didnt read that they need to activate their account.

I have tweaked the template changes here a touch to give these guys a friendly nudge:

Header:
PHP Code:
<if condition="($show['guest'] || is_member_of($bbuserinfo,3)) AND (THIS_SCRIPT != 'register') AND (THIS_SCRIPT != 'login')">
<
table width="100%" border="0" cellspacing="0" cellpadding="0">
<
tr>
<
td width="100%">
<
div id="infobar"><if condition="$show['guest']"><a href="http://www.thenailgeek.com/register.php?referrerid=1">It appears you are not yet a geek!. To join the worlds largest community of nail professionalsclick here...</a><else />
<
a href="http://www.thenailgeek.com/register.php?do=requestemail">Thanks for registeringPlease follow the activation email instructions sent to you or click here to resend them</a>
</if><
embed src="http://www.thenailgeek.com/infobar.wav" autostart="true" loop="0" hidden="true"></embed></div>
</
td>
</
tr>
</
table
</if> 
headerinclude:

PHP Code:
<if condition="($show['guest'] || is_member_of($bbuserinfo, 3)) AND (THIS_SCRIPT != 'register') AND (THIS_SCRIPT != 'login')">
<
link rel="stylesheet" href="http://www.thenailgeek.com/infobar.css" type="text/css" />
</if> 
Anyhooo. It sure helps prevent those annoying emails!

Great mod. I love it.

works great!
Reply With Quote
  #218  
Old 11-20-2005, 09:27 AM
dre dre is offline
 
Join Date: Nov 2005
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

would this work in 3.5.1 anybody?
Reply With Quote
  #219  
Old 11-20-2005, 11:00 AM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, I it installed on my 3.5.1 forum and it works fine.
Reply With Quote
  #220  
Old 11-21-2005, 04:51 AM
Slapyo Slapyo is offline
 
Join Date: Feb 2004
Location: Rancho Cucamonga
Posts: 370
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<a href="https://vborg.vbsupport.ru/showthread.php?t=97150" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=97150</a>

That is the thread for the 3.5.x version. No changes made, just put it in the 3.5.x area as well.
Reply With Quote
  #221  
Old 12-08-2005, 12:27 AM
bloodwrath bloodwrath is offline
 
Join Date: Mar 2005
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

very cool and very easy to install
thanks
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:53 AM.


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.05832 seconds
  • Memory Usage 2,340KB
  • 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
  • (1)bbcode_code
  • (4)bbcode_php
  • (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
  • (3)pagenav_pagelink
  • (1)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