Title: plou's Replies | WordPress.org

---

# plou

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 99 total)

1 [2](https://wordpress.org/support/users/plou/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/plou/replies/page/3/?output_format=md) …
[5](https://wordpress.org/support/users/plou/replies/page/5/?output_format=md) [6](https://wordpress.org/support/users/plou/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/plou/replies/page/7/?output_format=md) [→](https://wordpress.org/support/users/plou/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] Next and previous match](https://wordpress.org/support/topic/next-and-previous-match-2/)
 *  [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [1 year, 4 months ago](https://wordpress.org/support/topic/next-and-previous-match-2/#post-18285225)
 * Hello,
 * I use a similar code on my website. I put it in the _event-detail.php_ file, 
   which is in the plugin’s _template_ folder! I hope this helps you.
 *     ```wp-block-code
       /* Previous match */<?php    $previous_post = get_previous_post();    if (!empty( $previous_post )): ?>      <a href="<?php echo esc_url( get_permalink( $previous_post->ID ) ); ?>" title="Previous match">Previous match</a>    <?php else:      echo "&nbsp;";    endif; ?>/* Next match */<?php    $next_post = get_next_post();    if (!empty( $next_post )): ?>      <a href="<?php echo esc_url( get_permalink( $next_post->ID ) ); ?>" title="Next match">Next match</a>    <?php endif; ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Detailed Player Stats for SportsPress] Offensive and defensive](https://wordpress.org/support/topic/offensive-and-defensive/)
 *  Thread Starter [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/offensive-and-defensive/#post-18125416)
 * Hello,
 * Yes, actually I think there is a problem with my Sportspress installation, I 
   can’t choose which statistics (offensive or defensive) to assign to the positions.
   When I save, the box remains empty. I will investigate and find the origin of
   the “bug”.
 * Sorry for the inconvenience.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Detailed Player Stats for SportsPress] Offensive and defensive](https://wordpress.org/support/topic/offensive-and-defensive/)
 *  Thread Starter [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/offensive-and-defensive/#post-18125138)
 * Hello,
 * Here’s how to quickly set up a test environment.
 * **Step One** Create a position (/wp-admin/edit-tags.php?taxonomy=sp_position)
   with offensive statistics, and another position with defensive statistics. For
   example:
    - Position: Forward, offensive statistics.
    - Position: Goalkeeper, defensive statistics.
 * **Step Two** Create statistics (/wp-admin/admin.php?page=sportspress-config) 
   for each type, offensive and defensive. For example, let’s create two “Player
   Performance” types:
    - Performance 1: Goals scored, under offensive statistics.
    - Performance 2: Goals conceded, under defensive statistics. For both performances,
      remember to check the box to make them visible in player profiles.
 * **Step Three** Create a player with the forward position, for example, Wayne 
   Rooney, and another player with the goalkeeper position, for example, Fabien 
   Barthez.
 * **Step Four** In the Sportspress configuration page (/wp-admin/admin.php?page
   =sportspress&tab=players), check the “Offensive → Defensive” box.
 * Normally, if you go to Wayne Rooney’s player page, you should see the number 
   of goals he has scored, as it is an offensive statistic. The number of goals 
   conceded will not be visible. Conversely, on Fabien Barthez’s page, only goals
   conceded will be visible.
 * This setup works well with the Sportspress plugin, but not with your plugin. 
   All statistics are visible without distinction between offensive and defensive.
 * Thank you in advance for your help, and thank you for all the development work
   you do for Sportspress!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Officials Templates for SportsPress] Friendly event not displayed in the list of matches.](https://wordpress.org/support/topic/friendly-event-not-displayed-in-the-list-of-matches/)
 *  Thread Starter [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/friendly-event-not-displayed-in-the-list-of-matches/#post-18043434)
 * Hello [@savvasha](https://wordpress.org/support/users/savvasha/),
 * Thanks for the help and the quick response. The code you gave me was returning
   a wordpress error, so I modified it a little, it works perfectly, thank you! 
   Here is my code:
 *     ```wp-block-code
       function custom_modify_officials_event_formats( $formats ) {    $formats[] = 'league';    $formats[] = 'friendly';    return $formats;}add_filter( 'sportspress_competitive_event_formats', 'custom_modify_officials_event_formats' );
       ```
   
 * Regards,
    -  This reply was modified 1 year, 8 months ago by [plou](https://wordpress.org/support/users/plou/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] View statistics](https://wordpress.org/support/topic/view-statistics/)
 *  [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [2 years ago](https://wordpress.org/support/topic/view-statistics/#post-17790120)
 * Hello,
   There is a plugin called “Detailed Player Stats for SportsPress” created
   by [@savvas](https://wordpress.org/support/users/savvas/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] Club country](https://wordpress.org/support/topic/club-country/)
 *  [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/club-country/#post-16940371)
 * Use emoji.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Detailed Player Stats for SportsPress] Tabs ?](https://wordpress.org/support/topic/tabs-43/)
 *  Thread Starter [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/tabs-43/#post-14996808)
 * Hello,
    I also have a lot of seasons! But I just wanted to set up a single tab
   for all the detailed reports. The matches would be in a row in a single tab, 
   as is already the case for events.
 * [https://archivesreimsfootball.fr/personnalites/fischer-lucien](https://archivesreimsfootball.fr/personnalites/fischer-lucien)
 * In fact with my site now. The season is already using a link to the season page.
   If this is not possible to display all statistics in one and the same tab. Is
   it possible to do something like this:
    1935-36 (+).
 * The (+) will then be used to display detailed statistics. I think this will work
   for me, but my PHP skills are not developed enough to do this! ;(
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] Automated player stats not visible on player pages](https://wordpress.org/support/topic/automated-player-stats-not-visible-on-player-pages/)
 *  [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/automated-player-stats-not-visible-on-player-pages/#post-14976415)
 * [https://github.com/ThemeBoy/SportsPress/pull/387/commits/8fe8d3e32c860fddb92437aac76d7a943ade061f#diff-4af89fc92bd692ceeb21bef48277d798e42b3f441b6bc79aa16131e6b240ac6c](https://github.com/ThemeBoy/SportsPress/pull/387/commits/8fe8d3e32c860fddb92437aac76d7a943ade061f#diff-4af89fc92bd692ceeb21bef48277d798e42b3f441b6bc79aa16131e6b240ac6c)
 * You should use this. This fixes the bug with the “0” data when using the Offense/
   Defense stats. This bug has been present since the implementation of this function,
   it has never been corrected.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] Event import limit](https://wordpress.org/support/topic/event-import-limit/)
 *  [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/event-import-limit/#post-14621147)
 * Divise ton fichier … C’est rapide …
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] New Updates???](https://wordpress.org/support/topic/new-updates-5/)
 *  [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/new-updates-5/#post-14435381)
 * I had asked the same question two months ago ([https://wordpress.org/support/topic/roadmap-progress/](https://wordpress.org/support/topic/roadmap-progress/)),
   I did not get an answer. It is true that the plugin has been the same for several
   years now.
 * It’s a shame because there are some great ideas on the ideaboard (like detailed
   player stats), some have been on it for 5 years (and in top vote and still haven’t
   been added.
 * ou only have to look at the changelog to see that the plugin has not moved forward
   for several years now. I don’t know what to think about the future of the plugin.
   Y
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] What to do when you outgrow Sportspress?](https://wordpress.org/support/topic/what-to-do-when-you-outgrow-sportspress/)
 *  [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/what-to-do-when-you-outgrow-sportspress/#post-14240624)
 * Interesting
    Personally, I have over 1,600 games, 5,200 players. No problem on
   the match lists (regardless of the number of matches). But I have some problem
   with the list of players. I have a list of 200-300 players and it is common to
   have memory limit errors, but not all the time. For example, yesterday a list
   indicated memory error and today it is working. I already have 512 mb of active
   memory on my Ionos hosting. I think there would be optimization to do on the 
   players (and player list)! (And I have 512 mb.)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] Adjusting Goals in Player List vs Player Profile](https://wordpress.org/support/topic/adjusting-goals-in-player-list-vs-player-profile/)
 *  [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/adjusting-goals-in-player-list-vs-player-profile/#post-14225925)
 * Adding goals to player records or lists is purely cosmetic.
 * For example if you have a player with 10 goals (from the match sheets), if you
   add 5 goals to his total in his player page and you create a player list that
   displays the goals he will only have 10 goals.
 * If you want the goals to apply everywhere you have to create a sort of “false
   match” where you put the number of goals he scored.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] No images from page 2 of paginated lists](https://wordpress.org/support/topic/no-images-from-page-2-of-paginated-lists/)
 *  [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/no-images-from-page-2-of-paginated-lists/#post-14201300)
 * Do you use a “cache” or “lazy loading” image plugin? It may be related!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] Adding “Totals” to “Player Lists”](https://wordpress.org/support/topic/adding-totals-to-player-lists/)
 *  [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/adding-totals-to-player-lists/#post-14197726)
 * Impossible without a custom code.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SportsPress - Sports Club & League Manager] players to the match](https://wordpress.org/support/topic/players-to-the-match/)
 *  [plou](https://wordpress.org/support/users/plou/)
 * (@plou)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/players-to-the-match/#post-14197705)
 * Yes it’s normal. The displayed players are not filtered (league, seasons, etc.).
   This displays all the players on the team.

Viewing 15 replies - 1 through 15 (of 99 total)

1 [2](https://wordpress.org/support/users/plou/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/plou/replies/page/3/?output_format=md) …
[5](https://wordpress.org/support/users/plou/replies/page/5/?output_format=md) [6](https://wordpress.org/support/users/plou/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/plou/replies/page/7/?output_format=md) [→](https://wordpress.org/support/users/plou/replies/page/2/?output_format=md)