![]() |
What target URL is used in the vBulletin Navigation Manager?
pickempicks.php? |
I'm still open to suggestions but this did not work for me.
So, at least for now, uninstalled |
You have PM!
|
how come only 8 installs for this plugin so far ? Should be a lot more i'd figure...maybe the word just isn't out yet ?
I was just looking exactly just for this just now , as the other Tournament / Ladder / League plugin seems like too much...for a simple pick em plugin. any security issues arised yet? It isn't typical plugin procedure to do the whole database login / password thingee . not quite understanding why this url needs to be in config.php - $siteUrl = 'http://localhost/personal/phppickem.com/application/ ? and when installed, will my existing members still see the NFL login screen when logged in.. or do they have to signup remotely to another site to pick the pick'ems ? trying to figure out this plugin..before installing. thanks |
Quote:
|
ive gotten this all to work so far for the season only thing i noticed is that when you click on a team the scores of the previous games does not show in the right column
|
TIme / Result column...nothing shows after the week is over...should say who won and stuff
|
1 Attachment(s)
Looks like this isn't broken code so much as forgotten code - the case is there to do something if there's a score entered, but the "do something" part is just "print an empty table cell". So to fix this, you can replace line 77 in schedule.php (should be 77 - you're looking for the line after "//if score is entered, show result").
It was: Code:
echo ' <td></td>' . "\n"; Code:
echo ' <td>'.$visitorTeam->teamName.' '.$result['visitorScore'].', '.$homeTeam->teamName.' '.$result['homeScore'].'</td>' . "\n"; You could make the winners appear "bold" if you add this instead of the code above to the same location: Code:
if ((int)$result['homeScore'] > (int)$result['visitorScore']) { echo ' <td>'.$visitorTeam->teamName.' '.$result['visitorScore'].' ←<b>'.$homeTeam->teamName.' '.$result['homeScore'].'</b></td>' . "\n"; } if ((int)$result['visitorScore'] > (int)$result['homeScore']) { echo ' <td><b>'.$visitorTeam->teamName.' '.$result['visitorScore'].'</b> → '.$homeTeam->teamName.' '.$result['homeScore'].'</td>' . "\n";} I hope that helps you! |
Hey man that did the trick Krusty i appreciate your time you took to answer my question :) worked very well
|
1 Attachment(s)
Official Game day is 59 days away I figured I would throw up the schedule for this years games if anyone wants it.
Just import the new schedule via phpadmin. |
All times are GMT. The time now is 09:47 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|