LaMonte Forthun
Forum Replies Created
-
Forum: Plugins
In reply to: [LeagueManager] widget next match with team logosWould it be possible to get temporary admin access so I can look at what’s going on from the inside? This is an issue I spent quite a bit of time tracking down recently and thought I had it resolved.
If you can set up an admin user for me, send login info to lamontef@yahoo.com.
I added that functionality recently, but its some code that I haven’t released yet. Most of the internal code that’s needed is already in place, but on the league settings page there’s a checkbox that allows for matches outside the group. When you go to add a match team one will be just teams in the group you are currently working in, team two will be all teams in the league. It works well, I wrote it in last year so I could use it for a basketball site I was working on. I don’t have anything written in for out-of-league standings, but I planned on adding it at some point in the near future.
Forum: Plugins
In reply to: [LeagueManager] Update matchday does not workDo you have your league set up as championship with groups or default with no groups?
Forum: Plugins
In reply to: [LeagueManager] widget next match with team logosHi Molly, 3.8.9 actually fixed the widget problem, but if you’re still having issues we’ll need to work it out. What’s happening now, the next and prev arrows not working or information not showing up? How do you have the widget set up (what options do you have turned on)?
Forum: Plugins
In reply to: [LeagueManager] All gamesstylinjimp, you don’t need to change those if you’re not using them, the biggest issue is with main score and you’re not using basketball and soccer.
Forum: Plugins
In reply to: [LeagueManager] Show next match in widget doesnt work, Translation ErrorSo you want two match days, which would be the next 18 matches? When I’ve used it for match days, I’ve put a header over one, Match Day XX, then the matches for that match day, then another header for the next match day and the list of matches. If you want two match days run together, you should be able to do it with the limit of 18 matches (limit=18). If that doesn’t work, I’d need to see your match list for another option.
Forum: Plugins
In reply to: [LeagueManager] All gamesIt’s something that can be added, but not changed as many don’t use match days. It would probably be easier to work with using match_day=nextX or prevX, but determining what the current match_day is could be tricky as not all schedules follow a clean calendar… Something to work on.
Forum: Plugins
In reply to: [LeagueManager] Show next match in widget doesnt work, Translation ErrorI see nine matches on May 1, are there others that come before those? The time=next function gives you the next matches, which you’ve limited to nine. Are you trying to get something else?
Forum: Plugins
In reply to: [LeagueManager] All gamesI’ll look in to 1-3 and get back to you.
4). Do this:
In matches.php, go to line 71 and remove the 0s as such:
$match->home_points : 0)
change to
$match->home_points : ”)
(two single quotes)$match->away_points : 0)
change to
$match->away_points : ”)Then clear out the 0s in your scores for unplayed matches.
time=next gives you upcoming matches, not just next match. If you want the next match, use match_day=XX
If you want something automated, I can add it.
Forum: Plugins
In reply to: [LeagueManager] All gamesmode isn’t needed and right now isn’t used. What are you trying to do that you are trying to use mode for? The default is for all matches to show, then if you want to limit by match day, team, group, time, next or prev, etc., you have those options.
Forum: Plugins
In reply to: [LeagueManager] Show next match in widget doesnt work, Translation ErrorWhat are you trying to do and what are you getting?
I just took your shortcode and dropped it into my install, and it gave me the next 9 matches only.
Forum: Plugins
In reply to: [LeagueManager] All gamesAs long as ‘home_points’ and ‘away_points’ are Null, and ‘winner_id’ and ‘loser_id’ are not set, the rest will not cause issues and will be filled in properly when you have a result.
Your links came up blank…
Download the new shortcode.php file and you will get the full match list. Small issue with the previous version was preventing it to work right, should be fixed now… Once I know it’s OK I’ll put out a full release.
Forum: Plugins
In reply to: [LeagueManager] All gamesAre you missing the on penalty results completely?
Forum: Plugins
In reply to: [LeagueManager] All gamesIn your match list, you’ll see ‘0’ in all the scores, you need to remove those. I apologize, that was an error on my part trying to clean some things up and making the display look better. What I forgot was that when a score is added, even ‘0’s, the match is marked played. So, right now your matches are all played, most of which are 0-0 ties…
The new soccer.php file fixes the issue. Unfortunately, it doesn’t remove the 0’s in your database.
As mentioned above, replace the shortcode.php file again, you grabbed the first one I posted, which had a couple of test lines that I’ve removed (so you won’t see the array or a few other lines).