Many thanks Paulio51, solved!
Another 2 solutions..
1- I would like to change the columns of a standing league (always for a soccer team).
In my standings there is:
POS – empty columns – logo – team name … G W T L Goal Diff PTS
So, to delete the columns empty?
2- How to center the text of matches table? I would lito to center all or allign all on left side.
Many thanks for helps
1 – That sounds like you need to modify the template used for displaying the standings table. You find that under leaguemanager->templates. Copy standings-extend into your_theme_directory/leaguemanager, which you need to create, and modify that template to whatever you want.
Those empty columns are probably the team status and logo.
2 – I would use CSS to do that. Adding text-align: center to table.leaguemanager td did it for me.
Paul
Many thanks Paul.
I understand how to allign text and it works.
I have a doubt for tables of standings. How to? “Copy standings-extend into your_theme_directory/leaguemanager, which you need to create, and modify that template to whatever you want”.
I can set them but I can’t find a solution to delete the empty column.
For example, where I find Goals and Diff columns?
I would like also change (invert) the columns, I would like to appear:
POS – LOGO – TEAM NAME – PTS – W D L N GOALS DIFF
Andrea
How many columns do you have empty? I guess I mis-read your post. The below is done in your copied standings-extend.php file. If the only column you need removed is the one between POS and LOGO than just remove the line that has echo $team->status in it.
Goals and Diff are a little different they are being output by the soccer.php file and are encompassed in the do_action('leaguemanager_standings_columns_'.$league->sport, $team, $league->point_rule ) line of code.
If you want the PTS column moved just move the line with echo $team->points to just below were is says echo $team->title
You need to copy the standings-extend.php file, which you find under plugins/leaguemanager/templates, because if there ever is another update to the plugin (which may or may not happen) all the changes to this file will be lost. You need to create a new directory, under your theme directory, called leaguemanager. Inside that directory is where you put your modified standings-extend.php file.
Hopefully that helps!
Paul
how about changing the texts “Goals” and “Diff” to something else?