K
Forum Replies Created
-
Forum: Plugins
In reply to: [LeagueManager] 3.9.0.3this should be fixed in 3.9.0.7
Forum: Plugins
In reply to: [LeagueManager] Every games displayed with version 4.1In version 3.9.0.7 I added another template named matches-by_matchday.php which shows the matchs separated by match day. Use [matches league_id=X template=by_matchday] to use the template
Forum: Plugins
In reply to: [LeagueManager] Results problemsThis is fixed in 3.9.0.7
Forum: Plugins
In reply to: [LeagueManager] Canno split match->title in customized matches.phpVery nice, but be aware that this method does not capture overtime or penalty scores. In version 3.9.0.7 I added another parameter $match->homeScore and $match->awayScore that contains the scores depending on whether the match finished after regular time, overtime or penalty. Thus simply exchange $match->home_points and $match->away_points with the above mentioned
Forum: Plugins
In reply to: [LeagueManager] Using matches.php withoud a menu aboveIn version 3.9.0.7 there is another option in the [matches] shortcode to force show or hide match_day or team selection dropdown menues.
[matches league_id=X show_match_day_selection=true|false show_team_selection=true|false]
Forum: Plugins
In reply to: [LeagueManager] Loss of all matches-3.9.0.1@diallito you have to use the following shortcode to display matches of a certain team
[matches league_id1 team=X limit=2 time=prev order=”date DESC”]
where X is the respective team IDForum: Plugins
In reply to: [LeagueManager] Results problemsthx, I will fix this
Forum: Plugins
In reply to: [LeagueManager] Ranking HOME, AWAY,FORM,GENERAL?I am sorry, I don’t understand what you are asking for. You mean that won away matches give more points than home matches?
Forum: Plugins
In reply to: [LeagueManager] Canno split match->title in customized matches.phpHi,
I don’t think this will work correctly as the home team match is shown in bold and therefore also contains HTML code.
The following should do what you want within the loop <?php foreach ($matches AS $match) ?>
$match->title = $teams[$match->home_team]['title'].' '.$match->score.' '.$teams[$match->away_team]['title']; if ( $leaguemanager->isHomeTeamMatch( $match->home_team, $match->away_team, $teams ) ) $match->title = '<strong>'.$match->title.'</strong>';Forum: Plugins
In reply to: [ProjectManager] template/dataset.phpHi,
in version 3.1.3 I added a function to generate a dropdown menu of all datasets in one project. You can find an example in templates/dataset.php.
Hope that helpsForum: Plugins
In reply to: [LeagueManager] Loss of all matches-3.9.0.1this should be fixed in version 3.9.0.2
Forum: Plugins
In reply to: [LeagueManager] Unable to manually add teamthis is fixed in version 3.9.0.2
Forum: Plugins
In reply to: [LeagueManager] Can't Drag&drop ranking with new versionHi, the drag&drop was causing problems. If you set team ranking to manual, the team ranking will be editable through a standard form. Just change the rank and hit “Save Ranking”.
Forum: Plugins
In reply to: [LeagueManager] Loss of all matches-3.9.0.1I will check this issue
Forum: Plugins
In reply to: [LeagueManager] where is the link ?There is a TinyMCE button to insert shortcodes into posts or pages. In the documentation page the different shortcodes are described in more detail