K
Forum Replies Created
-
Forum: Plugins
In reply to: [ProjectManager] Users inserting datasetsI worked on this issue and it should work in the latest version
Forum: Plugins
In reply to: [ProjectManager] Is League Manager Coming backI only became aware that it was offline a few days ago as I was not notified about this step. I already contacted wordpress support to get to know why and how to get it back online.
Forum: Plugins
In reply to: [LeagueManager] Tournament/ChampionchipHi,
I did some fixes on the chamionship mode. Your setup, however, will not work like this with the third match in second round. It has been designed following soccer world championship, which would only allow two matches in second round with your setup.
Forum: Plugins
In reply to: [LeagueManager] Adding W or L next to match resultI found a way to get the child theme directory, which will be in the next update. Thus, you can put your custom templates in a leaguemanager folder in your child theme
Forum: Plugins
In reply to: [LeagueManager] Adding W or L next to match resultI am not sure what you mean by child theme? Is it then another subdirectory in your theme folder? This would not work. You have to put it into your main theme directory or into the templates folder in leaguemanager.
Forum: Plugins
In reply to: [LeagueManager] Custom matchtableHi Jinko, your usage of
<br>is simply wrong! It only forces a line break. This could do what you want.<table class='leaguemanager matchtable' summary='' title='<?php echo __( 'Match Plan', 'leaguemanager' )." ".$league->title ?>'> <tr> <th class='match'><?php _e( 'Home Team', 'leaguemanager' ) ?></th> <th class='score'><?php _e( 'Score', 'leaguemanager' ) ?></th> <th class='match'><?php _e( 'Away Team', 'leaguemanager' ) ?></th> </tr> <?php foreach ( $matches AS $match ) : ?> <?php $The_Home_team = $teams[$match->home_team]['title']; ?> <?php $The_Away_team = $teams[$match->away_team]['title'] ?> <?php if ( $leaguemanager->isHomeTeamMatch( $match->home_team, $match->away_team, $teams ) ) : ?> <?php $The_Home_team = sprintf("<strong>%s</strong>", $The_Home_team);?> <?php $The_Away_team = sprintf("<strong>%s</strong>", $The_Away_team); ?> <?php endif; ?> <?php $The_Home_team = "<p class='logos'><img class='home_logo' src='".$teams[$match->home_team]['logo']."' alt='' /></p><p>".$The_Home_team."</p>"; ?> <?php $The_Away_team = "<p class='logos'><img class='away_logo' src='".$teams[$match->away_team]['logo']."' alt='' /></p><p>".$The_Away_team."</p>"; ?> <tr class='<?php echo $match->class ?>'> <td class='match' style='text-align:center; font-size: 15px;'><?php echo $The_Home_team ?> </td> <td class='match' style='text-align:center; padding-top: 35px; font-size: 20px; font-weight: bold;'><?php echo $match->homeScore."-".$match->awayScore ?><br /><?php echo '<p style="font-size: 12px; font-weight: normal; font-style: italic;">'.$match->date." ".$match->start_time.'</p>' ?> </td> <td class='match' style='text-align:center; font-size: 15px;'><?php echo $The_Away_team ?></td> </tr> <?php endforeach; ?> </table>Forum: Plugins
In reply to: [LeagueManager] Custom matchtableHi jinko, nice job, I only fixed the code a little bit.
<table class='leaguemanager matchtable' summary='' title='<?php echo __( 'Match Plan', 'leaguemanager' )." ".$league->title ?>'> <tr> <th class='match'><?php _e( 'Home Team', 'leaguemanager' ) ?></th> <th class='score'><?php _e( 'Score', 'leaguemanager' ) ?></th> <th class='match'><?php _e( 'Away Team', 'leaguemanager' ) ?></th> </tr> <?php foreach ( $matches AS $match ) : ?> <?php $The_Home_team = "<span class='logos'><img class='home_logo' src='".$teams[$match->home_team]['logo']."' alt='' /></span>".$teams[$match->home_team]['title']; ?> <?php $The_Away_team = "<span class='logos'><img class='away_logo' src='".$teams[$match->away_team]['logo']."' alt='' /></span>".$teams[$match->away_team]['title']; ?> <?php if ( $leaguemanager->isHomeTeamMatch( $match->home_team, $match->away_team, $teams ) ) : ?> $The_Home_team = sprintf("<strong>%s</strong>", $The_Home_team); $The_Away_team = sprintf("<strong>%s</strong>", $The_Away_team); <?php endif; ?> <tr class='<?php echo $match->class ?>'> <td class='match' style='text-align:center; font-size: 15px;'><?php echo $The_Home_team ?> </td> <td class='match' style='text-align:center; margin: 20px; font-size: 20px;'><?php echo $match->homeScore."-".$match->awayScore ?><br /><?php echo '<p style="font-size: 12px; font-style: italic;">'.$match->date." ".$match->start_time.'</p>' ?> </td> <td class='match' style='text-align:center; font-size: 15px;'><?php echo $The_Away_team ?></td> </tr> <?php endforeach; ?> </table>Forum: Plugins
In reply to: [LeagueManager] This ranking is possible?duplicate post..
Forum: Plugins
In reply to: [LeagueManager] Poker LeagueThere is no poker setting, but you could use the racing sport type. This is somewhat special and you will also require my other plugin ProjectManager (https://wordpress.org/plugins/projectmanager/) to manage the individual player. Have a look at this post, maybe it helps:
https://wordpress.org/support/topic/auto-racing-league-not-working?replies=2
Forum: Reviews
In reply to: [Fancy Slideshows] plugin stopped workingSince WordPress 3.5 the plugin requires plugin Link Manager (https://wordpress.org/plugins/link-manager/) as the links management sysetm has been deactivated. Link Manager is an official plugin to bring back the old link system
Forum: Plugins
In reply to: [LeagueManager] Auto Racing League Not WorkingHi, the racing mode is special in that it is built for racing teams having multiple individual racer. It requires my other plugin ProjectManager (https://wordpress.org/plugins/projectmanager/) to setup racer profiles containing at least a name.
Setup racer profiles:
1. Add new project and fill in the settings
2. Add a WP category to subdivide racer and add subcategories for each racing team
3. insert new datasets for each racerLeagueManager automatically recognizes if ProjectManager is active. For each team in LeagueManager select the project and category containing the racer profiles (team roster). Racing mode exchanges the matches form allowing adding a race name and some extra information. In the results table there is a link named “Results. When you click on it you’ll get to a page showing each racer divided by team. There you can insert results (e.g. time, points) for each racer. In LeagueManager 3.9.1 I added a new template “standings-racing-individual.php”, which allows showing a standings table for the individual racer.
I hope this helps.
Forum: Plugins
In reply to: [LeagueManager] Matches By Day IssueSorry, I forgot to add the template to the svn repository. It’s included now
Forum: Plugins
In reply to: [LeagueManager] Problem with the League Widget@rubneo: The widget problem should be fixed in 3.9.1. And please no duplicate posts
Forum: Plugins
In reply to: [LeagueManager] widget next match with team logos@rubneo: The widget problem should be fixed in 3.9.1
Forum: Plugins
In reply to: [LeagueManager] highlight colors champion team, from playoff teamsHi, currently this is not possible using a simple option. I understand you refer to the normal standings table and not the championship mode? In that case you could create a custom template and add a count variable to the loop displaying the teams and then add a special tr class.