K
Forum Replies Created
-
Forum: Plugins
In reply to: [LeagueManager] Error when adding match score!This is probably displayed because you have wp_debug set to true. I did some code fixing warnings like that. Does it sill appear in version 3.9.0.9?
Forum: Plugins
In reply to: [LeagueManager] plus/minus Gwhich sports type do you use?
Forum: Plugins
In reply to: [LeagueManager] Parse error: syntax error after upgrading to version 3.9.0.8what system do you run your website on? what php version?
Forum: Plugins
In reply to: [LeagueManager] Parse error: syntax error after upgrading to version 3.9.0.8still there in 3.9.0.9?
please post new error message as lines have changedForum: Plugins
In reply to: [LeagueManager] Parse error: syntax error after upgrading to version 3.9.0.8try updating to 3.9.0.9. I did a small change to this code line.
It’s strange as I don’t get any error…
Forum: Plugins
In reply to: [LeagueManager] Adding W or L next to match resultYou need to create a custom template and upload it into a folder named leaguemanager in your theme directory.
Within the loop to display the matches you can access the different scores by
$match->homeScore
$match->awayScoreYou can then determine who won by simply comparing them, e.g.
if ($match->homeScore > $match->awayScore) { $homeSymbol = "W"; $awaySymbol = "L"; } elseif ($match->homeScore < $match->awayScore) { $homeSymbol = "L"; $awaySymbol = "W"; }You could then alter the match title, e.g.
$match->title = sprintf("%s %s %s", $homeSymbol, $match->title, $awaySymbol);or the match score
$match->score = sprintf("%s %s %s", $homeSymbol, $match->score, $awaySymbol);Forum: Plugins
In reply to: [LeagueManager] plus/minus GWell, I don’t know where the column comes from, but you can create your own custom template. I suppose you use template=standings-last5 in the shortcode. Download the file “standings-last5.php” from the plugin templates folder. Then remove the respective column from the file and upload the file to the a directory named leaguemanager in your themes folder
Forum: Plugins
In reply to: [LeagueManager] plus/minus GI am sorry I don’t understand what you mean
Forum: Plugins
In reply to: [LeagueManager] TinyMCE buttonwhat wp-version and plugin version do you use? The button works without problems for me (wp-version 4.1 and LeagueManager 3.9.0.8)
Forum: Plugins
In reply to: [LeagueManager] Buttona save changefixed..
Forum: Plugins
In reply to: [LeagueManager] Scores With Zero (0) Won't Appear!this should be fixed in 3.9.0.8
Forum: Plugins
In reply to: [LeagueManager] plus/minus Gdo you mean the +/- points column from the admin page? No, this is required by some people. If you don’t need it simply ignore it
Forum: Plugins
In reply to: [LeagueManager] DON'T UPGRADE to 3.9.0.1I think this was an issue with the default match day and should work again in version 3.9.0.7
Forum: Plugins
In reply to: [LeagueManager] Missing the key in new updatethis is fixed.
To everybody: Please read the other posts before posting as there have been three different threads on this issue!
Forum: Plugins
In reply to: [LeagueManager] Add team or change team buttonfixed