Hello, Yes i have made this trick to put the league in the fixture.
Open the file located in sportspress/template/event-list.php.
After the variable $video = get_post_meta( $event->ID, ‘sp_video’, true ); add the following variable $leagues = get_the_terms( $event->ID, ‘sp_league’ );
Add the following code where the table is generated (for example before “if ( $usecolumns == null || in_array( ‘event’, $usecolumns ) ) “)
foreach ( $leagues as $league ):
echo ‘<td class=”data-league”>’ . $league->name . ‘</td>’;
endforeach;