Forum Replies Created

Viewing 15 replies - 451 through 465 (of 574 total)
  • Forum: Plugins
    In reply to: [LeagueManager] calendar
    Plugin Author LaMonte Forthun

    (@lamontef)

    Good idea, something to look into, can you draft the idea with proposed look (include an example if possible), so it can be considered?

    Thank you!

    Plugin Author LaMonte Forthun

    (@lamontef)

    There were a couple of problems with a couple of the minor upgrades to 3.8, but things are fine now. The most current version is 3.8.8.1, which was put out to test a new feature (showing the last five games graphically in the standings), and nothing else. It’s stable and allows you to do the auto upgrade. If you’d rather stay away from the code that includes the test, do a manual upgrade to 3.8.8.

    Personally, I’d say do the auto upgrade to 3.8.8.1 and if you’re not interested in the last five game code, don’t worry about as the code is in a template that you wouldn’t use anyway…

    Plugin Author LaMonte Forthun

    (@lamontef)

    There’s nothing currently available in LeagueManager (that I know of, but I’m not the original developer, so I might have missed it…) to do user-based additions. It’s something I’ve discussed with a couple of others though and think that there’s a need. It’s ‘Wish List’ right now though…

    If you’d be willing to draft up some ideas, I’d be willing to look into it further.

    Plugin Author LaMonte Forthun

    (@lamontef)

    That’s an odd formula for MLB as baseball games never end in a tie… I don’t have access to the code right now, I’m on the road covering a basketball tournament, but I’ll get back to you a bit later. I’ve I’m not mistaken, that calculation happens in the proper ‘sport’ file in the sport folder. I’ll pull down some code tonight and have a look. Is it baseball you’re working with as a sport?

    Plugin Author LaMonte Forthun

    (@lamontef)

    I think the second post is the answer to the problem, if the games are delayed, to be rescheduled or the date/time isn’t known yet (to be determined) there needs to be a checkbox for those options. I’ll put it on the ‘to-do’ list…

    Thanks!

    Plugin Author LaMonte Forthun

    (@lamontef)

    Makes perfect sense and I wish I had a good answer for you at this point… To be honest, the ‘championship’ mode, with the advancements into the finals rounds and such, is part of the code that I haven’t spent much time with at this point (keep in mind, I didn’t write the plugin, I’m helping out with development moving forward and support). The leagues that I work with on my site, mostly European basketball, are just getting to that stage of their play, so there has been no need for me to even look at this code, there has been more than enough keeping me busy up to this point.

    With that said, your situation isn’t unique, but will require a fair amount of thought and code to actually implement in LeagueManager. We’ll put it on the ‘Wish List’…

    Plugin Author LaMonte Forthun

    (@lamontef)

    Thanks

    Plugin Author LaMonte Forthun

    (@lamontef)

    There are a couple of things that we want to add to the Widget, so it’s possible…

    Plugin Author LaMonte Forthun

    (@lamontef)

    Sorry, got busy…

    In the template that you are using through the Widget (compact or extended) do the following:

    Find:

    <?php if ( $teams ) : ?>
    <?php foreach( $teams AS $team ) : ?>
    <tr class='<?php echo $team->class ?>'>

    and change it to:

    <?php if ( $teams ) : ?>
    $x=0;
    <?php foreach( $teams AS $team ) : ?>
    $x++;
    if ($x <= 10) {
    <tr class='<?php echo $team->class ?>'>

    Then find (at the end):

    <?php endforeach; ?>
    <?php endif; ?>

    and change it to:

    <?php endforeach; ?>
    }
    <?php endif; ?>

    This line controls the number of teams to show:

    if ($x <= 10) {

    If you want 5 or 15, just change the ’10’

    Plugin Author LaMonte Forthun

    (@lamontef)

    Thanks, I’ll make the fix…

    Plugin Author LaMonte Forthun

    (@lamontef)

    Can you download the LeagueManager plugin folder, zip it up and send it to me so I can look at it?

    Plugin Author LaMonte Forthun

    (@lamontef)

    I’m not 100% clear on what you’re looking for…

    Can you put the code on a page and post a link so I can see it? Or can you take a screen shot and write on it what is or isn’t working and what you need.

    Plugin Author LaMonte Forthun

    (@lamontef)

    The great thing about LeagueManager is the fact that you can add fields like you need without having to dig into phpMyAdmin to add fields. With the Sports files that can be built you have the ability to add addition fields and that data is stored in a field you’ve probably seen called ‘custom’.

    Did you make a ‘Kickball’ sport and customize that?

    I’ve always been a firm believer that if hardware or software is working you don’t need to get caught up in the upgrade game, so if things are working for you than no you wouldn’t need to worry about it. Of course, if you don’t know what’s new, improved or fixed, you’ll never know if it would be something that you’d like to use…

    As for the db problem, I’m not sure without looking at the code, but it’s probably something simple like a missing comma. If you can do a file compare do that with all the files you modified to see if you accidentally modified something you shouldn’t have.

    Plugin Author LaMonte Forthun

    (@lamontef)

    Being this is something new, we have the opportunity to make various things optional, such as number of games to show, to show the next game or not, what icons to use, etc. I saw an implementation of a similar feature on a site the other day that had simple green and red bullets. It was very clean but very easily identifiable.

    Just some thoughts, I’d encourage anyone to jot down some thoughts as well…

    Plugin Author LaMonte Forthun

    (@lamontef)

    That’s by design, the first icon is the next game to be played…

Viewing 15 replies - 451 through 465 (of 574 total)