vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Forum Display Enhancements - ESPN BottomLine (https://vborg.vbsupport.ru/showthread.php?t=246562)

acezakj 07-14-2010 10:00 PM

ESPN BottomLine
 
1 Attachment(s)
Very easy mod to install.

What is ESPN BottomLine?

Its a scrolling bar with live updates of sports. From ESPN

Instructions:
  1. AdminCP>Styles templates>Navbar
  2. Go all the way to the bottom and post this code:
  3. Code:

    <tr>
    <td class="alt1">
    <iframe src="http://espn.go.com/bottomline/espnewsbottomlinebasic.html" height="44px" width="100%">
    </iframe>
    </td>
    </tr>

  4. Should work perfectly, if not leave a question below.
Update from Atomic
If you want to show it only on a certain Forum or Forum(s), for vB 4.0.4,

Find in Forum Display Templates -> FORUMDISPLAY:
Code:

    {vb:raw template_hook.forumdisplay_below_subforums}
</vb:if>

Add Below: (change value 15 to your Forum ID to display in)

Code:

<!-- Sports Score Ticker Begin -->
<vb:if condition="$foruminfo['forumid']==15">
  <tr>
      <td class="alt1">
          <iframe src="http://espn.go.com/bottomline/espnewsbottomlinebasic.html" height="44px" width="100%"></iframe>
      </td>
  </tr>
</vb:if>
<!-- Sports Score Ticker End -->


RSNF 07-14-2010 11:53 PM

Why is it advertising last years college basketball scores? Also a gold tournament that's been over for some time now?

oddmud 07-15-2010 04:59 AM

I would also like to be able to only show hockey scores... is that possible?

MagicThemeParks 07-15-2010 11:27 AM

Looks like you can customize it, but probably for each person's settings it seems.

http://espn.go.com/bottomline/faq.html

thecelticway 07-15-2010 03:00 PM

installed~~~~~~~ works fine:up:

acezakj 07-15-2010 04:40 PM

Thanks for the feed back and yes you can customize the bar you hit the lock buttons to choose what you want to keep live on the bar.

acezakj 07-15-2010 04:45 PM

Quote:

Originally Posted by cardz247 (Post 2069287)
Why is it advertising last years college basketball scores? Also a gold tournament that's been over for some time now?

Dude i have no clue what your talking about visit the demo site thats what it should look like.

CharlieDelta 07-17-2010 06:17 PM

I like it!!! Installed.
Thanks

Madpoodle 07-18-2010 01:25 AM

Awesome, installed, thanks man!

GaRanT 07-18-2010 01:41 AM

Installed, Thank you !

Madpoodle 07-18-2010 12:11 PM

LOL, mixed reviews so far from the peanut gallery. One guy did ask if there was a motorsports bar we might use instead?

DeviantFlash 07-18-2010 02:46 PM

Any way to change the color scheme

neto614 07-18-2010 05:09 PM

wow works great ....

thanks

ozzy47 07-18-2010 05:50 PM

Works great!!

Thanks

AtomicAcidbath 07-18-2010 08:27 PM

Works!

I added it to show in our Sports forum only.
If you want to show it only on a certain Forum or Forum(s), for vB 4.0.4,

Find in Forum Display Templates -> FORUMDISPLAY:
Code:

{vb:raw template_hook.forumdisplay_below_subforums}
</vb:if>

Add Below: (change value 15 to your Forum ID to display in)
Code:

<!-- Sports Score Ticker Begin -->
<vb:if condition="$foruminfo['forumid']==15">
  <tr>
      <td class="alt1">
          <iframe src="http://espn.go.com/bottomline/espnewsbottomlinebasic.html" height="44px" width="100%"></iframe>
      </td>
  </tr>
</vb:if>
<!-- Sports Score Ticker End -->


Madpoodle 07-19-2010 10:38 AM

Had to remove it, it wacks out the screens in Vista/IE and apparently Winders 7/IE...

Can't seem to paste screen print in here...

I just posted on our site asking for a screen print, and the entire post runs vertically down the post box..

Madpoodle 07-19-2010 10:50 AM

On Vista, the ESPN banner is spaced WAY left, you have to scroll over to the right to see the forum, and then the banner doesn't follow you over. Seems to mainly happen on the forum opages, not the main screen...

sportsbuddys 07-20-2010 04:12 AM

Perfect for my sports site!!! Love it thank you :)

Krusty1231 08-24-2010 09:03 PM

How do I add this to more than 1 location?

Nice one - thanks for this.

ProFifaLeagues 08-24-2010 09:26 PM

just copy paste the code into the header and footer Krusty or where its needed!

8thos 12-07-2010 07:52 AM

This #$%# is awesome.

BadgerDog 05-05-2011 11:08 AM

Installed for testing with thanks on 4.04 ... :)

What would I change in the code to have it appear only in a group of specific forums:

ie: 5,106,110

Thanks ..

Regards,
Doug

MagicThemeParks 05-05-2011 11:16 AM

Quote:

Originally Posted by BadgerDog (Post 2192211)
What would I change in the code to have it appear only in a group of specific forums:

ie: 5,106,110

Thanks ..

Regards,
Doug

https://vborg.vbsupport.ru/showthrea...t=conditionals

BadgerDog 05-05-2011 11:29 AM

Quote:

Originally Posted by MagicThemeParks (Post 2192221)

Thanks ... :up:

This worked ...

Code:

<!-- Sports Score Ticker Begin -->
<vb:if condition="in_array($foruminfo['forumid'], array(40,106))">
  <tr>
      <td class="alt1">
          <iframe src="http://espn.go.com/bottomline/espnewsbottomlinebasic.html" height="44px" width="100%"></iframe>
      </td>
  </tr>
</vb:if>
<!-- Sports Score Ticker End -->

Regards,
Doug

EquinoxWorld 05-05-2011 01:28 PM

If anyone wants to remove the white border it has as per default Iframe simply add the following attribute:

frameborder="0px" so it would look like so:

Code:

<tr>
<td class="alt1">
<iframe src="http://espn.go.com/bottomline/espnewsbottomlinebasic.html" height="44px" width="100%" frameborder="0px">
</iframe>
</td>
</tr>


DaninMS 05-07-2011 10:07 AM

I like it and placed the ticker at the top of my forum but I noticed any customized changes (only show NFL and MLB scores) I made only showed up on a pop up window not on the forum itself. Anyone else have this problem ?

Also I'd like to show it on the main forum only but I'm not sure what the ID is for that.

RichieBoy67 05-11-2011 12:35 PM

I wonder if it would be possible to show different feeds on different forums.. would be some work I imagine..would be great for a sports related forumes to have feeds similar to the specific forum being viewed..

RSNF 10-22-2011 12:53 PM

Appreciate you adding this been working out great for my members

yesfans 10-22-2011 10:01 PM

click on coll football, it does not show results, skips over it.. The CUSTOMIZE buttom they have is not working on mine?

yesfans 10-23-2011 11:43 PM

it does not show NFL or COLL FOOTBALL stuff. WHY?

yesfans 10-24-2011 06:50 PM

well this mod appears useless as no one can see most current sports, NFL, Coll Football, yet you can get NBA crap.

Hanany95 12-26-2011 07:56 PM

Does this work with the latest version? Because my programmer says that he cannot find Styles templates under the Admincp folder. But this looks good, thanks mate.

Reycer 07-16-2012 10:41 PM

I'm using 4.2.0 and it works fine. Sounds to me like you need a a new programmer. lol

ADMINCP= www.yoursite.com/admincp.php Not the admincp on your server. lol

(no idea why I'm replying to someone that posted 6 months ago, just bored I guess. lol)

RSNF 07-16-2012 10:56 PM

LOL

Quote:

Originally Posted by Reycer (Post 2348800)
I'm using 4.2.0 and it works fine. Sounds to me like you need a a new programmer. lol

ADMINCP= www.yoursite.com/admincp.php Not the admincp on your server. lol

(no idea why I'm replying to someone that posted 6 months ago, just bored I guess. lol)


maddenminds 07-20-2012 08:28 PM

just installed- http://maddentourneys.com/forums/forum.php seems to work fine

tonym 07-22-2012 01:29 AM

can anyone get this to work with 4.2.0 Patch Level 2?

I cant seem to get it to work in only my sports talk forum...when I put the code in it puts it on the bottom of everyforum not only my sports forum..I also changed the number to my forum in the code and it still shows in all forums..

thanks for any and all help


All times are GMT. The time now is 05:20 PM.

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.01294 seconds
  • Memory Usage 1,784KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (36)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete