K
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: ProjectManager] Parse error in core.phpI decided to remove the NumberFormatter call. It should work now, but also the number formatting needs to be done manually via the filter projectmanager_numeric to display it with 1000-delimiter etc.
Currencies may be displayed correctly without interference, but can be formatted via the filter projectmanager_currency if neccessary.
Forum: Plugins
In reply to: [Plugin: ProjectManager] Parse error in core.phpUpgrade to the development version. That is the same as Version 2.8 only that I call the NumberFormatter in a different way. Maybe that works. You can download it here.
Forum: Plugins
In reply to: [Plugin: LeagueManager] SquadsYou can manage team rosters with my ProjectManager Plugin (http://kolja.galerie-neander.de/plugins/projectmanager/). I have also included a connection between those two plugins to insert statistics for each player. This feature is still pretty simple and I’m glad for suggestions.
This will be the way to implement squads.
Forum: Plugins
In reply to: [Plugin: ProjectManager] Parse error in core.phpWell, that makes absolutely no sense. I kind of hoped that we were talking about different sections. I checked this part several times and don’t see where there should be a parse error! Further I don’t get anything. Do you know if your server has the Internationalization Functions (http://de2.php.net/manual/en/book.intl.php) installed, as the NumberFormatter is part of it. They are not part of the PHP core.
You could try to take out the get_locale() calls and substitute them with the locale directly. It’s like the WP_LANG definition, e.g. ‘en_US’.
Can you post a link to your phpinfo page?
Forum: Plugins
In reply to: [Plugin: ProjectManager] Parse error in core.phpI double checked the position, but could not find any parse error and also don’t get one reported. Can you please post the lines you think are affected.
Further what OS does your run? Linux or Windows? What server software? Apache or something else? whatt PHP version?
Forum: Plugins
In reply to: [Plugin: LeagueManager] Widget is Weak!Could you post a screenshot, since I don’t see what you mean
Forum: Plugins
In reply to: Add team logo in the Leaguemanager widgetThere is an option “Show Logo”
Forum: Plugins
In reply to: [Plugin: ProjectManager] Parse error in core.phpI am working on it.
Forum: Plugins
In reply to: [Plugin: LeagueManager] Widget ProblemIt could be related to the new Widget API in WordPress 2.8. I will try to fix this as soon as possible.
Forum: Plugins
In reply to: [Plugin: ProjectManager] Feature Request: Limit number of results returnedI’ve implemented the shortcode attributes as you suggested, except that you specifcy formfields only with its ID (second example).
[project id=ID results=3]
[project id=ID form_id=12 form_value=’Hello’]
[project id=ID orderby=rand results=3]Forum: Plugins
In reply to: [Plugin: ProjectManager] Feature Request: Limit number of results returnedShould the limit only display 4 datasets and that’s all, or include a pagination, so just change the number of objects per page?
Forum: Plugins
In reply to: [Plugin: LeagueManager] Version 2.9 & Championchip ModeI have figured it out. The problem was that the MySQL query for the teams only worked with seasons that were just numbers (e.g. 2009), but not with string such as you had “08/09”. I have released a patch (Version 3.0.4), which should fix it. It should be available within the next 15 minutes.
Forum: Plugins
In reply to: [Plugin: LeagueManager] Version 2.9 & Championchip ModeOK, so the teams aren’t retrieved from the database. What does
echo $season;
and
echo $league_id
in the showMatches function give?
Forum: Plugins
In reply to: [Plugin: LeagueManager] Version 2.9 & Championchip ModeWow, that was fast 🙂
Next test. In lib/shortcodes.php there is the function showMatches().
After the line$teams = $leaguemanager->getTeams(“…”, “ARRAY”):
do
print_r($teams);
Also after
$matches = getMatches($search, false, $order);
do, before the foreach-loop
print_r($matches)
Forum: Plugins
In reply to: [Plugin: LeagueManager] Version 2.9 & Championchip ModeHey,
do you use the default template or did you create a custom one? Could you do <?php print_r($matches) ?> in the template (If you use the default it’s view/matches.php) and post the output here.