ThemeBoy
Forum Replies Created
-
No problem 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Volleyball presetHi @linky245,
We’ll definitely add a volleyball preset in the next update. I’d like to have you review it to make sure the statistics are correct 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] error after upgrade!Hi Pedro,
That sounds like a good solution.
Regarding the event performance table, the reason the if condition is inside the table is because we still want to show the total performance even when individual players aren’t displayed. That way, you can add performance per team, like fouls, attempts, etc.
Glad to hear you like the new translation system too 🙂
Hi again!
The event importer requires the following date format (regardless of the WP setting):
yyyy/mm/ddHope this helps 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] error after upgrade!With the venue events, is this in the taxonomy-venue.php template?
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] error after upgrade!Hi Pedro,
Are you loading event-blocks.php via a page template? The template requires an id, so something like this should work:
sp_get_template( 'event-blocks.php', array( 'id' => get_the_ID() ) );The translation system has been changed to eliminate complicated functions. Replacing all instances of
SP()->text->string( $string )with
__( $string, 'sportspress' )will bring the template up to date.
Please let me know if there are any other new features that are affecting the templates. I’d be happy to help you.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] MenusI’ll definitely see if we can add it in a future update!
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Player PageAwesome, glad I could help!
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] MenusGlad to hear that 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Feature Request: Ice HockeyHi Sven,
Thanks for your feedback! Really glad to hear that you are enjoying the plugin.
I’d be happy to add Ice Hockey to the sport presets in the next update. I’ll let you know when ice hockey is added so that you can check it out and make sure it looks ok 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] updatesHi again,
Just thought I’d let you know that SportsPress version 1.1 has been released 🙂
Hi again!
Each time you import an events csv file, you need to select a league and season to assign all of the events to. The best way to split the events into different leagues is to create a separate csv file per league, then select that league when importing.
I hope this makes sense 🙂
Hi Josh,
Just thought I’d let you know that we have just released SportsPress version 1.1 🙂
There’s a checkbox in SportsPress > Settings > Event Options labeled “Display players” which is checked by default. You can uncheck it to hide players from event pages.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] MenusHi there,
There’s a tiny tab at the top of the screen called “Screen Options”. By clicking that tab you will be able to see the available post types and select the ones you want to add to your menu.
Hope this helps 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Player PageAh, you’ll need to change the line:
$groups = get_terms( 'sp_position' );to:
$groups = get_terms( 'sp_position', 'orderby=slug' );Let me know if that works.