ben52
Forum Replies Created
-
Forum: Plugins
In reply to: [LeagueManager] Updating plugin – what files are affected?only in template folder
if you want to make change in admin/matches you can give an other name only to keep your change save in case of update for new version
but the original file matches must be with the same name.Forum: Plugins
In reply to: [LeagueManager] no score at [matches] before updateyou have to cancel 0-0 by hand and after save it
Forum: Plugins
In reply to: [LeagueManager] Does anyone know how…put this shortcode:
[matches league_id=xx match_day=2]
[matches league_id=xx match_day=3]change the day number as you want
Forum: Plugins
In reply to: [LeagueManager] I can not add more than 90 matches .to add the score you must go to leaguemanager in admin
select the mach-day and filter so you can add the score and after save the result!!!!Forum: Plugins
In reply to: [LeagueManager] I can not add more than 90 matches .the syntax gives you error in error log ???
try to desactivate the plugin and activate again.Forum: Plugins
In reply to: [LeagueManager] I can not add more than 90 matches .yes the screen shot is ok
working or not ????Forum: Plugins
In reply to: [LeagueManager] I can not add more than 90 matches .dont put the // in the begin
add only:
$max_matches = 18;
before the close }Forum: Plugins
In reply to: [LeagueManager] I can not add more than 90 matches .you are sure that you modificate as i tell you:
before:
$max_matches = ceil($leaguemanager->getNumTeams($league->id, $group)); // set number of matches to add to half the number of teams per match day}
after
//$max_matches = ceil($leaguemanager->getNumTeams($league->id, $group)); // set number of matches to add to half the number of teams per match day
$max_matches = 18;
}Forum: Plugins
In reply to: [LeagueManager] I can not add more than 90 matches .do you modify like this:
Forum: Plugins
In reply to: [LeagueManager] I can not add more than 90 matches .Forum: Plugins
In reply to: [LeagueManager] I can not add more than 90 matches .Forum: Plugins
In reply to: [LeagueManager] I can not add more than 90 matches .ok this for 18 teams
go to admin/match.php line 107 and change like this:
amend with the line 107 // and add $max_matches = 18; before }//$max_matches = ceil($leaguemanager->getNumTeams($league->id, $group)); // set number of matches to add to half the number of teams per match day
$max_matches = 18;let me know
BenForum: Plugins
In reply to: [LeagueManager] I can not add more than 90 matches .how many teams you have ????
Forum: Plugins
In reply to: [LeagueManager] I can not add more than 90 matches .try this maybe it’s help
admin/match php. line 87:$max_matches = 11; change the value to the n. of your matches
Forum: Plugins
In reply to: [LeagueManager] Updating plugin – what files are affected?Hi kwestalot
you can see the change in Developers
Browse in Trac (for modification see the age example 4 days)
click trunk (look to the recent age and click files to open the modification)one important thing to do: if you make change in some templates like maches or standings-extend you must rename it as follow:
with this you will not loose your change when you update to new version.
matches-old (or any thing)
standings-old
and the shortcode must be:[matches league_id=xx template=old]
[standings league_id=xx template=old]