ThemeBoy
Forum Replies Created
-
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Calendar QuestionsHi again,
A new Calendar post type has been added in version 0.5, with filters for leagues, seasons, and teams. These calendars can be viewed directly and can also be selected in the Events Calendar widget.
We’re working on shortcodes to release in the next update.
Regarding export to Google Calendar, this sounds like an interesting feature and we’ll try to include it in the future 🙂
Hi Martin,
Glad you found a solution!
More features coming soon 🙂
Hi Martin,
You can target all of the tables generated by SportsPress using the selector .sp-data-table
Change the CSS rules to:
.sp-data-table { display: table; border-collapse: collapse; }
.sp-data-table tr { display: table-row; }
.sp-data-table th, .sp-data-table td { display: table-cell; padding: 5px; border: 1px solid #000; }Hope this helps 🙂
Hi Martin,
Thank you for your kind words. Glad you’re enjoying the plugin!
You’re right, it looks like the theme’s stylesheet is wiping out the table borders. Let’s target the league table with some new CSS rules:
.sp-league-table { display: table; border-collapse: collapse; }
.sp-league-table tr { display: table-row; }
.sp-league-table th, .sp-league-table td { display: table-cell; padding: 5px; border: 1px solid #000; }This should add black borders and some padding to the table cells. You can change #000 to another color like grey (#999) or red (#f00).
Hope this helps 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] (Football)Soccer Cup GamesHi again!
Yes, the post types will still be the same so you can add events for now.
The formats we are adding in the next version have been narrowed down to “League” and “Friendly”. We’ll do our best to release a solution for tournaments in the near future. For now, a workaround is to create child seasons (select a Parent when adding a season). Then, you could use the child seasons to sort cup games 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Import game/player statsHi there,
The event importer is currently being tested and will most likely be included in version 0.5 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] (Football)Soccer Cup GamesHi Leigh,
Yes, we will be adding a “Format” section to events that lets you choose from 3 formats: League (default), Tournament, and Friendly.
I’ll let you know when the update becomes available.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Event timeHi there,
This is actually intentional. Instead of having 2 dates (post date and event date), we’ve decided to use the post date as the event date. You can change the post date by clicking “Edit” next to the field “Published on” or by editing the “Date/Time” field when adding a new event.
Although WordPress hides future posts by default, we’ve modified it so that future events will be visible.
I hope this helps 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] "Player Lists" Not WorkingHi again 🙂
Thank you for your ongoing feedback. It’s been helpful to our development.
I’m not able to reproduce this issue using our data, but I’d like to look into this further. Could you send me your player database as a csv file? I could then pinpoint the issue by using the same data you’re using.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Displaying League TablesGlad you found the solution 🙂
For future reference and for other looking for an answer: each column in a league table can be turned on/off by checking and unchecking the checkbox next to the label in the first row.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Custom ScoringHi again,
We’ve just released version 0.4.3 which enables selection of multiple outcomes per team per event. Hope this helps 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Get message of WARNINGHi again,
The issue has been fixed in version 0.4.3 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Get message of WARNINGHi there,
Thank you for your feedback. I’m glad you are enjoying the plugin 🙂
The warning message appears when no columns are selected in the league table. We’ve since fixed this issue and will be included in the next update.
https://github.com/ThemeBoy/SportsPress/commit/8451b6e9f118bac5b28e1bb86158a24c5a081a44
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Custom ScoringHi there,
Thank you for your question.
The current version of SportsPress can only count the number of outcomes (Win, Loss, Tie, etc) and the number of Results (Goals, Penalties, etc).
We think a multiselect for outcomes would give user more control for advanced scoring systems.
The proposed change would enable selecting multiple outcomes per event, for example the following outcomes would be defined:
[ Win, Tie, Loss, Shutout, 1 Pt, 2 Pts, 3 Pts ]
and a single event could have 3 outcomes selected:
[ Win, Shutout, 3 Pts ]Then, the PTS equation would work by setting it to:
PTS = Win x 6 + Tie x 3 + Shutout + 1 Pt + 2 Pts x 2 + 3 Pts x 3This would mean that the above example would be calculated as:
(1) x 6 + (0) x 3 + (1) + (0) + (0) x 2 + (1) x 3
= (1) x 6 + (1) + (1) x 3
= 6 + 1 + 3
= 10We’re thinking of adding the multiselect in the same style as the “Previous Teams” field in player profiles.
🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] link registered user to a playerThank you for the additional info. It looks like the player-to-user feature is still limited, and players can only be assigned to admin users in the current version.
I’ll let you know when we release a version with the ability to link players to registered (non-admin) users 🙂