ThemeBoy
Forum Replies Created
-
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Theme Glitches@drogheda Could you explain the glitches or provide a link to your website so I can have a look?
FYI, this community forum is not regularly monitored, so it is much quicker to contact us via our support site for future queries.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Positions of players@darkaiolos Thanks for your feedback. You’re right, positions is not being displayed on single player profile pages. We’ll definitely add this in the next update 🙂
p.s. This community forum is not regularly monitored, so it is much quicker to contact us via our support site for future queries.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Disable date linkHi guys,
Thanks for the suggestion. We’ll add an option to change event links in the next update.
p.s. This community forum is not regularly monitored, so it is much quicker to contact us via our support site for future queries.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Columns CSS@steelux Add the following code to the Custom CSS field in SportsPress Settings to make every other column darker:
.sp-data-table tr td:nth-child(2n) { background: rgba(0,0,0,0.05); }If you prefer to display the data in a different format, the best way is to create a custom page template. See our integration guide for more info: https://sportspresspro.com/docs/theme-integration-guide/
I hope this helps! FYI, This community forum is not regularly monitored, so it is much quicker to contact us via our support site for future queries.
@sunshyme We’re working on an option for this. Thanks for your patience.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Team Logo Missing@opopop Try using single.php instead.
p.s. This community forum is not regularly monitored, so it is much quicker to contact us via our support site for future queries.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Upcoming Events Not Showing Up@emlaberis Thanks for your question. By default, future events in event lists will display the time instead of the result.
The best way to show games played and upcoming matches (fixtures/results) is to create 2 separate calendars with the same criteria except for “Status”. The upcoming matches calendar should be set to “Scheduled” and games played to “Published”. Then, grab the shortcodes for both of these calendars and paste them into a new Page to display them both on one page.
I hope this helps! FYI, This community forum is not regularly monitored, so it is much quicker to contact us via our support site for future queries.
Hi Paul,
The configuration for cricket is as follows:
Event Outcomes
- Win
- Loss
- Draw
Team Results
- 1st
- 2nd
- 3rd
- 4th
- BP
- Points
Player Performance
- Runs
- Wickets taken
Table Columns
- P = Events Played
- W = Win
- L = Loss
- D = Draw
- T = Tie
- BP = BP
- Points = Points
- Streak = Streak
If you’ve selected “Custom” already and added your own variables, don’t worry — your work won’t be erased. When you select another sport, the presets will be added to your custom variables.
Regarding your client’s concern about separating runs and overs, both options are possible.
1. To display the player statistics via separate tables, create 2 separate Player Lists and select the same criteria in the “Details” section, but different columns to display. The same data will be displayed with the selected columns only visible.
2. To add a bold line between the columns, add the following code to SportsPress > Settings > Custom CSS:
.sp-player-list .data-runs { border-right: 1px solid #000; } .sp-player-list .data-overs { border-left: 1px solid #000; }I hope this helps! FYI, This community forum is not regularly monitored, so it is much quicker to contact us via our support site for future queries.
@sunshyme When using ACF in the event-list.php loop, you’ll need to include the event ID. Here’s an example of how to get the “match_number” field:
the_field( "match_number", $event->ID );Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Small bug@teh1aeq Thanks for finding that! You’re right, the Site URL (and Abbreviation) weren’t being saved when creating a new team.
We’ve just released version 1.2.4 which contains a fix for this bug 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Streak column@iconoclast50 Thanks for the update, marking as resolved 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Code needed for text centreGreat 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Team Logo Missing@opopop I’m not able to view your site but I can tell you that team logos are the same as featured images, so your theme will need to support displaying featured images in single posts. Please see our Theme Integration Guide on how to create a custom page template to display teams.
@sunshyme A good alternative until we add this to core is to use the Advanced Custom Fields plugin: http://wordpress.org/plugins/advanced-custom-fields/
This plugin will enable you to add custom fields to any post type. Once you’ve added a Match Number fields to the Event post type, you can then modify the event-list.php template. See this guide on how to create your own SportsPress templates:
https://sportspresspro.com/docs/theme-integration-guide/#custom-page-templatesForum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Streak column@iconoclast50 Thanks for your patience and ongoing feedback. We’ve just released version 1.2.3 which addresses this issue and includes a fix for the “Streaks” calculations in league tables and team columns.