Forum Replies Created

Viewing 15 replies - 331 through 345 (of 574 total)
  • Plugin Author K

    (@koelle)

    I worked on this issue and it should work in the latest version

    Plugin Author K

    (@koelle)

    I 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.

    Plugin Author K

    (@koelle)

    Hi,

    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.

    Plugin Author K

    (@koelle)

    I 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

    Plugin Author K

    (@koelle)

    I 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.

    Plugin Author K

    (@koelle)

    Hi 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>
    Plugin Author K

    (@koelle)

    Hi 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>
    Plugin Author K

    (@koelle)

    duplicate post..

    Plugin Author K

    (@koelle)

    There 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

    Plugin Author K

    (@koelle)

    Since 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

    Plugin Author K

    (@koelle)

    Hi, 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 racer

    LeagueManager 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.

    Plugin Author K

    (@koelle)

    Sorry, I forgot to add the template to the svn repository. It’s included now

    Plugin Author K

    (@koelle)

    @rubneo: The widget problem should be fixed in 3.9.1. And please no duplicate posts

    Plugin Author K

    (@koelle)

    @rubneo: The widget problem should be fixed in 3.9.1

    Plugin Author K

    (@koelle)

    Hi, 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.

Viewing 15 replies - 331 through 345 (of 574 total)