Title: grunk's Replies | WordPress.org

---

# grunk

  [  ](https://wordpress.org/support/users/grunk/)

 *   [Profile](https://wordpress.org/support/users/grunk/)
 *   [Topics Started](https://wordpress.org/support/users/grunk/topics/)
 *   [Replies Created](https://wordpress.org/support/users/grunk/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/grunk/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/grunk/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/grunk/engagements/)
 *   [Favorites](https://wordpress.org/support/users/grunk/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shashin] Can't any Google album anymore](https://wordpress.org/support/topic/cant-any-google-album-anymore/)
 *  Thread Starter [grunk](https://wordpress.org/support/users/grunk/)
 * (@grunk)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/cant-any-google-album-anymore/#post-3637945)
 * Thanks for the tips , that works 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LeagueManager] [Plugin: LeagueManager] Baseball widget and template](https://wordpress.org/support/topic/plugin-leaguemanager-baseball-widget-and-template/)
 *  Thread Starter [grunk](https://wordpress.org/support/users/grunk/)
 * (@grunk)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-leaguemanager-baseball-widget-and-template/#post-1873086)
 * Merci pour l’auto réponse 🙂
    Ca pourra peut être nous servir aussi , club français
   aussi (duc-baseball.org) on affiche pour le moment que les résultat baseball/
   softball senior donc en %
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LeagueManager] [Plugin: LeagueManager] Baseball widget and template](https://wordpress.org/support/topic/plugin-leaguemanager-baseball-widget-and-template/)
 *  Thread Starter [grunk](https://wordpress.org/support/users/grunk/)
 * (@grunk)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/plugin-leaguemanager-baseball-widget-and-template/#post-1872750)
 * I reply to myself :
 * To customize the display of the widget and the standing i just edit the standing-*.
   php in the template folder :
 * 1 – Create the following folder /wp-content/theme/your-theme/leaguemanager
    2–
   Past the required standing file. (ie : i’m using only compact so i copied standing-
   compact.php from plugin/leaguemanager/template/ 3 – Edit the previous file.
 * In my case i did this change :
 *     ```
       <tr>
       	<th class="num"><?php echo _c( 'Pos|Position', 'leaguemanager' ) ?></th>
       	<th class="num"> </th>
       	<?php if ( $league->show_logo ) : ?>
       	<th class="logo"> </th>
       	<?php endif; ?>
   
       	<th><?php _e( 'Team', 'leaguemanager' ) ?></th>
       	<?php if ( 1 == $league->standings['pld'] ) : ?>
       	<th class="num">G</th>
       	<?php endif; ?>
       	<th class="num">W</th>
       	<th class="num">L</th>
       	<th class="num">%</th>
       </tr>
       <?php if ( $teams ) : ?>
       <?php foreach( $teams AS $team ) : ?>
   
       <tr class='<?php echo $team->class ?>'>
       	<td class='rank'><?php echo $team->rank ?></td>
       	<td class="num"><?php echo $team->status ?></td>
   
       	<?php if ( $league->show_logo ) : ?>
       	<td class="logo">
       		<?php if ( $team->logo != '' ) : ?>
       		<img src='<?php echo $team->logoURL ?>' alt='<?php _e('Logo','leaguemanager') ?>' title='<?php _e('Logo','leaguemanager')." ".$team->title ?>' />
       		<?php endif; ?>
       	</td>
       	<?php endif; ?>
   
       	<td><?php echo $team->title ?></td>
       	<?php if ( 1 == $league->standings['pld'] ) : ?>
       	<td class='num'><?php echo $team->done_matches ?></td>
       	<td class='num'><?php echo $team->won_matches ?></td>
       	<td class='num'><?php echo $team->lost_matches ?></td>
       	<td class='num'><?php echo round($team->won_matches/$team->done_matches,3) ?></td>
       	<?php endif; ?>
       </tr>
       ```
   
 * That’s it ! You can now enjoy your new standings and widget 🙂

Viewing 3 replies - 1 through 3 (of 3 total)