forked from ThemeBoy/SportsPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
1258 lines (1082 loc) · 58.5 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== SportsPress - Manage Leagues & Sports Clubs ===
Contributors: ThemeBoy, brianmiyaji, aylaview, rochesterj
Tags: sport, sports, club, clubs, teams, statistics, stats, metrics, data, fixtures, results, standings, league tables, leagues, shortcodes, sports data, sports club, themeboy, esports, wordpress sports, equations, calculations, events, calendars, players, profiles, staff, seasons, countdowns, club management, football, nfl, footy, afl, baseball, basketball, cricket, darts, handball, hockey, netball, rugby, snooker, soccer, squash, tennis, volleyball, dota 2, league of legends, golf
Donate link: http://tboy.co/donate
Requires at least: 3.8
Tested up to: 4.4
Stable tag: 1.9.20
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html
SportsPress is an extendable all-in-one sports data plugin that helps sports clubs set up and manage a league or club site quickly and easily.
== Description ==
= Create a Professional Sports Website =
Transform your WordPress blog into a fully configurable team, club, or league website. Features a suite of sports tools including fixtures, results, automated standings, players rankings, and individual profiles for clubs, players, and staff.
[youtube http://www.youtube.com/watch?v=KQyga_C5a6M]
= Industry Reviews =
> "*There are number of professional sports club who likes to maintain their information and statistics online, SportsPress plugin makes this process really easy, cost effective and quick.*" — [Indexwp](http://www.indexwp.com/sportspress-plugin-review/)
>
> "*Script of the Day: While the WordPress repository holds various team and sports-related plugins, few of them come close to what you can achieve with SportsPress.*" — [Softpedia](http://news.softpedia.com/news/Script-of-the-Day-SportsPress-409247.shtml)
>
> "*SportsPress is our number 1 WordPress plugin for sport!*" — [GBSport](http://gbcoach.org.uk/5-great-wordpress-plugins-for-sport/)
>
> "*The freely available and highly impressive SportsPress plugin offers terrific functionality including a fixtures listing, league table, player & staff profiles, customizable point system and a built-in translation system for 36 different languages.*" — [Club Themes](http://clubthemes.com/awesome-sporting-templates-themes-wordpress-joomla/)
= Features =
* Equation Builder
* Club Profiles with Player List
* Automated League Standings with Club Logos
* Events (Fixtures & Results) with Player Performance
* Events Calendar
* Player Profiles & Statistics
* Player Lists
* Staff Profiles
* Select Current Club and Previous Clubs
* Season Archives
* Venue Information & Maps
* Statistics & League Table Columns Configuration
* Sport Presets
* Switch Between Club vs Club and Player vs Player Mode.
* Import Events, Clubs, Players, and Staff from CSV Files
* Easy Shortcodes Menu in Editor
* Events Integrate with iCal
* Certified compatibility with [WPML](http://wpml.org/plugin/sportspress/)
More details about each feature are available on the [SportsPress Website](http://tboy.co/pro).
= Free Extensions =
* [SportsPress for Cricket](https://wordpress.org/plugins/sportspress-for-cricket/)
* [SportsPress for Football (Soccer)](https://wordpress.org/plugins/sportspress-for-soccer/)
* [SportsPress for Golf](https://wordpress.org/plugins/sportspress-for-golf/)
= SportsPress Pro =
Looking for more advanced sports functionality? Upgrade to [SportsPress Pro](http://tboy.co/pro) to get access to more advanced features for your team, club, or league website.
= Available Languages =
* English – English ( en_US )
* Arabic – العربية ( ar )
* Armenian – Հայերեն ( hy )
* Bulgarian – Български ( bg_BG )
* Chinese (China) – 中文 ( zh_CN )
* Croatian – Hrvatski ( hr )
* Czech – Čeština ( cs_CZ )
* Danish – Dansk ( da_DK )
* Dutch – Nederlands ( nl_NL )
* French – Français ( fr_FR )
* Finnish – Suomi ( fi )
* German – Deutsch ( de_DE )
* Greek – Ελληνικά ( el_GR )
* Hungarian – Magyar ( hu_HU )
* Italian – Italiano ( it_IT )
* Japanese – 日本語 ( ja )
* Korean – 한국어 ( ko_KR )
* Macedonian – македонски ( mk_MK )
* Norwegian Bokmål – Norsk bokmål ( nb_NO )
* Persian – فارسی ( fa_IR )
* Polish – Polski ( pl_PL )
* Portuguese (Brazil) – Português do Brasil ( pt_BR )
* Portuguese (Portugal) – Português ( pt_PT )
* Romanian – Română ( ro_RO )
* Russian – Русский ( ru_RU )
* Slovak – Slovenčina ( sk_SK )
* Slovenian – Slovenija ( sl_SI )
* Spanish – Español ( es_ES )
* Swedish – Svenska ( sv_SE )
* Tamil – தமிழ் ( ta_IN )
* Thai – ไทย ( th )
* Turkish – Türkçe ( tr_TR )
= Sport Presets Included =
* American Football
* Association Football (Soccer)
* Australian Rules Football
* Baseball
* Basketball
* Cricket
* Darts
* Golf
* Handball
* Ice Hockey
* Lacrosse
* Netball
* Rugby League
* Rugby Union
* Snooker
* Softball
* Squash
* Table Tennis
* Tennis
* Volleyball
* Water Polo
= Esports Presets =
* Counter-Strike: Global Offensive
* Dota 2
* League of Legends
= SportsPress Themes for Clubs =
* [Football Club](http://tboy.co/fc)
* [Premier](http://tboy.co/premier)
* [Emblem](http://tboy.co/emblem)
= Documentation =
* [Getting Started](http://tboy.co/installation)
* [User Roles](http://tboy.co/roles)
* [Integration Guide](http://tboy.co/integration)
* [Actions](http://tboy.co/actionref)
* [Filters](http://tboy.co/filterref)
* [Shortcodes](http://tboy.co/shortcoderef)
= Get Involved =
Feel free to share your suggestions with us so we can continue to develop awesome sports club features for you guys!
Developers can contribute via the [SportsPress GitHub Repository](https://github.com/ThemeBoy/SportsPress/blob/master/CONTRIBUTING.md).
Translators can contribute to SportsPress translations through [Transifex](https://www.transifex.com/projects/p/sportspress/).
= Stay Current =
To keep up with the latest updates and new features, be sure to do the following:
* Visit the [SportsPress Pro homepage](http://tboy.co/pro).
* Subscribe to our [YouTube channel](http://tboy.co/youtube).
* Follow ThemeBoy on [Facebook](http://tboy.co/facebook) & [Twitter](http://tboy.co/twitter).
= Please Rate, Vote, and Enjoy! =
Your feedback is much appreciated and makes all the difference in improving SportsPress.
== Installation ==
= Minimum Requirements =
* WordPress 3.8 or greater
* PHP version 5.2.4 or greater
* MySQL version 5.0 or greater
[youtube http://www.youtube.com/watch?v=nE8-RlbotmU]
= Automatic Installation =
Automatic installation is the easiest option as WordPress handles the file transfers itself and you don't even need to leave your web browser. To do an automatic install of SportsPress, log in to your WordPress admin panel, navigate to the Plugins menu and click Add New.
In the search field type "SportsPress" and click Search Plugins. Once you've found our sports plugin you can view details about it such as the point release, rating and description. Most importantly of course, you can install it by simply clicking Install Now. After clicking that link you will be asked if you're sure you want to install the plugin. Click yes and WordPress will automatically complete the installation.
= Manual Installation =
The manual installation method involves downloading our sports plugin and uploading it to your webserver via your favorite FTP application.
1. Download the plugin file to your computer and unzip it
2. Using an FTP program, or your hosting control panel, upload the unzipped plugin folder to your WordPress installation's wp-content/plugins/ directory.
3. Activate the plugin from the Plugins menu within the WordPress admin.
= Upgrading =
Automatic updates should work like a charm; as always though, ensure you backup your site just in case.
If on the off-chance you do encounter issues with the event/team/player/staff pages after an update you simply need to flush the permalinks by going to WordPress > Settings > Permalinks and hitting 'save'. That should return things to normal.
== Screenshots ==
1. Select your sport to automatically install presets and sample data.
2. Each team has a unique logo and website URL. Optionally link teams from your blog to their official websites.
3. The overview page provides a birds-eye view of your entire sports network.
4. Configure variables used throughout the plugin to fit your sport. Presets are provided for some sports, and will automatically populate these options.
5. Design your own points system using the custom drag-and-drop equation builder.
6. Twenty Fourteen theme showcasing the dynamic league table and some of the included widgets.
== Frequently Asked Questions ==
= Which sports does this plugin support? =
The plugin will support most team sports with a scoring system. You can customize the table columns and player statistics via SportsPress settings. We've included presets for commonly requested sports, and you can also add your own.
= Will SportsPress work with my theme? =
Yes; SportsPress will work with any theme, but may require some styling to make it match nicely.
= Where can I report bugs or contribute to the project? =
Bugs can be reported either in our support forum or preferably on the [SportsPress GitHub repository](https://github.com/ThemeBoy/SportsPress/issues).
= Will SportsPress work with my sport? =
The plugin comes preinstalled with several different sports presets to help you get started quickly, but is also flexible enough to be customized to fit the need of any team or individual sport. Please [let us know](http://wordpress.org/support/plugin/sportspress) if you'd like to work with us to get your preset added the plugin.
= Can I import teams/players/staff/matches? =
Yes, CSV importers are included with the plugin. Go to Tools > Import and choose from one of the SportsPress CSV importers.
= What's the difference between the free and Pro plugin? =
SportsPress is a free plugin developed to give sports organizations the functionality needed to run a team, club, or league website. The plugin allows you to schedule your upcoming matches and enter the results after you've played a game. Your league tables, team and player statistics will automatically update once you've published the result to reflect the new standings.
Limitations? Don't worry, there are no limitations to the number of events, players, staff members, teams, clubs, or leagues you can add to the free plugin.
[SportsPress Pro](http://tboy.co/pro) is a premium plugin made for serious teams who are looking for additional sports functionality in their website. By upgrading to SportsPress Pro, you will be given instant access to a suite of sports modules that will appear in your dashboard.
The current modules that are available exclusively to SportsPress Pro are:
* Tournaments: Create and display tournaments in a bracket/knockout cup format.
* Sponsors: Add your sponsors on your website and track each of their clicks and impressions.
* Staff Directories: Show contact information of your key personnel so people know who to get in touch with.
* Team Access: Assign users to a specific team and limit their access to data related to that team.
* Team Colors: Make each team's profile page unique by displaying their team colors.
* League Menu: Display a global navigation bar at the top of your website for easy navigation from one team to the next.
* Birthdays: Display each player's birthday and their current age.
* Twitter: Add a Twitter feed to team, player, and staff pages.
* Branding: Instantly rebrands your admin panel to reflect your organization's brand.
* Duplicator: Clone anything with just one click. Great for creating multiple events.
* Lazy Loading: Load players using Ajax to speed up the event edit screen.
There are [4 different licenses](http://tboy.co/pro) that you can choose from: Social, Club, League, and Agency.
When you upgrade to one of the SportsPress Pro licenses, you can simply activate the Pro version without losing any of your data. Please note that we recommend that you do a complete backup whenever you make big changes to your website.
== Changelog ==
= 1.9.20 =
* Tweak - Expand event title section for team logos in countdown widget.
* Tweak - Center align team logo images in event.
* Tweak - Add iCal feed venue name and description.
* Fix - Escape address, summary, and description in iCal feed.
* Preset - Add ties and defense/offense definition to baseball preset.
* Localization - Add West Indies to nationality options.
* Localization - Update strings.
= 1.9.19 =
* Feature - Add Birthdays module.
* Feature - Add Lazy Loading module.
* Feature - Add separate offense and defense categories to player performance and box score.
* Feature - Add format setting to player performance with the options Number and Text.
* Feature - Add option to show and hide date and time in events.
* Tweak - Improve compatibility between custom color settings and theme options.
* Tweak - Add light shade to substitute rows in box score.
* Tweak - Prevent box score section from appearing when event is set in the future.
* Fix - Display icon setting in editor.
* Fix - Empty variable button appearing in equation builder when equation is empty.
* Preset - Update cricket preset with batting and bowling categories.
= 1.9.15 =
* Tweak - Add medium crop image size to ensure gallery images are square.
* Tweak - Add shortcut icon to admin bar.
* Fix - Mobile admin table cell width.
* Fix - Tutorial tab styling.
* Localization - Update Norwegian Bokmål and Turkish translations.
= 1.9.14 =
* Fix - Error appearing on team page in some cases when there are no competitions or seasons.
* Localization - Update source language file.
= 1.9.13 =
* Feature - Add option to display positions in player lists.
* Feature - Add option to show or hide player squad number and rank column.
* Feature - Add ability to display staff members in team page.
* Feature - Unique widget option added to hide widget when same as content.
* Tweak - Get auto and manual league tables in team page.
* Tweak - Add row numbers to league table and event list.
* Tweak - Allow searching from middle of sport preset names.
* Tweak - Remove deprecated settings from admin.
* Tweak - Prevent unnecessary scrollbar from appearing under scrollable tables.
* Tweak - Add spaces between results in event blocks widget.
* Tweak - Default template positions adjusted to render main content first.
* Tweak - Adjust checkbox column padding in admin.
* Tweak - Prevent positions and jobs from automatically linking to archives.
* Tweak - Adjust capabilities to allow team managers to edit venues.
* Fix - Player gallery thumbnail size too small in some cases.
* Fix - Competitive event icon in edit screen.
* Fix - SportsPress widget icons not appearing in 4.4 admin.
* Localization - Add demoyer to translation team.
* Localization - Update Dutch translations.
= 1.9.12 =
* Tweak - Display team names and score template without logos.
* Tweak - Validate hex color input.
* Tweak - Add sp prefix to TGMPA notice to avoid conflict with other plugins.
* Fix - Empty seasons displaying in player profiles.
* Fix - Error on pages with no screen objects.
* Localization - Add Tandor, muhahmetkara, elarequi, diego.battistella, and tkausch to translation team.
* Localization - Update Polish, Tamil, German, Turkish, Spanish, Dutch, and Portuguese translations.
= 1.9.10 =
* Fix - Automatic event results calculating without player performance.
* Localization - Update Turkish translation.
= 1.9.9 =
* Feature - Enable presets to define result equations.
* Tweak - Move event logo settings to new section in admin.
* Tweak - Disable custom colors by default.
* Tweak - Display league tables and player lists as auto when not manual.
* Fix - Prevent teams containing quotes to duplicate during import.
* Fix - Enable importing with special characters in team and player names.
* Fix - Check for zero in equation denominator contained within parenthesis.
* Fix - Placeholder in admin indicating automatic result.
* Preset - Update cricket preset.
* Localization - Update Tamil translation.
= 1.9.8 =
* Feature - Option to add custom table headings to calendars, league tables, and player lists.
* Tweak - Revert automatically hiding featured images when viewing teams, players, and staff.
* Fix - Team site URL escaping links in admin.
= 1.9.7 =
* Fix - Escape text inputs in admin.
* Localization - Update German translation.
= 1.9.6 =
* Feature - Venue subset to reflect statistics from a team's home venue.
* Tweak - Use team order instead of venue to get home and away subset.
* Tweak - Allow special HTML characters in player list fields.
* Tweak - Relabel box score to scorecard.
* Fix - Player list sorting by ascending squad number.
* Localization - Add Ales70, Elmister, and chinnz25 to translation team.
* Localization - Add Tamil (India) translations.
* Localization - Update Persian, Finnish, Italian, Czech, Greek, Slovenian, and Polish translations.
= 1.9.5 =
* Fix - Streaks calculation in league tables.
= 1.9.4 =
* Feature - Add Home and Away subset options to table column equation builder.
* Tweak - Display player and team checklists in admin only when Manual mode is enabled to improve performance.
* Localization - Add mahdi12 to translation team.
* Localization - Update Persian and Polish translation.
= 1.9.3 =
* Fix - Event results skipping some players in player list.
= 1.9.2 =
* Fix - Dynamic stats not being reflected in player lists.
= 1.9.1 =
* Fix - Add up statistics from multiple competitions and seasons in player list.
* Fix - Use player metrics as default in player list.
* Localization - Update Spanish translation.
= 1.9 =
* Feature - New Icons module containing vector icon options for player performance.
* Feature - Add event results to equation builder.
* Feature - Allow different page templates to be selected for each post type.
* Feature - Add equation builder to automate event results based on player performance.
* Feature - Allow Event Managers to edit venues.
* Feature - Display post excerpts in templates.
* Feature - Hide featured image if photo or logo is displayed.
* Feature - Add default outcome condition for events with more than 2 teams.
* Feature - Add option to display competition and season in player details.
* Feature - Add Google map zoom option.
* Feature - Add national flag option to player list.
* Feature - Add competition and season filter to manually inserted calendar shortcodes.
* Refactor - Move cricket functionality to free extension.
* Tweak - Improve individual mode admin screens and functionality.
* Tweak - Add styling to default event teams template.
* Tweak - Add cell padding to admin edit table.
* Tweak - Display position column only if positions exist.
* Tweak - Display Performance as Box Score in all occurrences.
* Tweak - Simplify sample data team names.
* Tweak - Move League Table module to Teams section.
* Tweak - Display column labels for time and results in split team mode.
* Tweak - Lock variable names once published to prevent equations from breaking.
* Tweak - Rename featured image meta boxes to reflect image type.
* Tweak - Improve readability of equations in admin.
* Tweak - Trim delimiter example when limit is more than 3 teams.
* Tweak - Allow a team limit of 0 for unlimited teams per event.
* Fix - Sample data generator for individual mode.
* Fix - Overview hierarchy in individual mode.
* Fix - Event delimiter sample output.
* Fix - Error in league table when stats are empty.
* Fix - Check if teams exist in countdown.
* Preset - Add golf preset.
* Preset - Recommend sport-specific extensions for cricket, golf, and football (soccer).
* Localization - Update Greek and French translations.
= 1.8.9 =
* Feature - Enable multiple nationalities for players and staff.
* Feature - Enable multiple seasons and competitions for league tables.
* Feature - Enable multiple seasons, competitions, and positions for player lists.
* Feature - Add custom title field and widget alignment option to shortcodes.
* Feature - Add option to always increment league table position.
* Fix - Import button on admin pages.
* Fix - Update jQuery DataTables to version 1.10.8 props devilsaces.
* Localization - Group translation team by language and display stats.
* Localization - Add albpower, elgolden, mobking, wah826, iojvan, eifelstudio, deckerweb, denkuhn, green_big_frog, Flubber89, sododesign, webby1973, Laislebai, slappfiskene.no, AugustoNeto, lfrodines, GonerSTUDIO, cofeman.sl, i1m3a7n92, opticadeharo, and ViktoriaRuzhylo to translation team.
* Localization - Update Polish, Finnish, Armenian, German, Slovenian, Italian, Czech, Dutch, Spanish, Romanian, and French translations.
= 1.8.8 =
* Feature - Add option to hide player and staff details.
* Tweak - Ability to display multiple current teams in staff profile.
= 1.8.7 =
* Feature - Add custom table heading option to widgets.
* Feature - Add random sorting to player gallery.
* Feature - Add option to hide player list and league table titles.
* Feature - Add heading option to player positions.
* Tweak - Display Soccer (Association Football) as Football.
* Tweak - Flush permalinks automatically when saving modules.
* Tweak - Separate scrollable and responsive table options.
* Tweak - Display event performance icon tables in 2 columns.
* Fix - Duplicate league table captions in team page.
* Preset - Add softball preset.
* Localization - Add FollowCandyPanda to translation team.
* Localization - Update Polish, Spanish, German, Norwegian, Dutch, Finnish, Russian, Armenian, and Czech translations.
= 1.8.6 =
* Tweak - Update modules page to reflect a change in offered features.
* Fix - Team dropdowns disappearing when none found in the competition and season assigned to an event.
* Localization - Update Russian translations.
= 1.8.5 =
* Fix - Error merging option arrays.
* Localization - Add m4rsal to translation team.
* Localization - Update Polish, Spanish, German, Norwegian, Dutch, and Finnish translations.
= 1.8.4 =
* Fix - Installation screen notice related to default color scheme.
* Localization - Add vetsmi, ceyhunulas, pgbenini, paulcoppen, fernandori, wolforg, and chr86 to translation team.
* Localization - Update Dutch, Spanish, Portuguese (Brazil), French, and German translations.
= 1.8.3 =
* Tweak - Settings page styling updated.
* Tweak - New modules category added for admin-related dashboard modules.
* Fix - Widget floating issue in some themes.
* Fix - Timezones added to calendar feeds using blog timezone setting.
* Fix - Event filters generating redundant queries.
* Localization - Update Finnish, Norwegian, Turkish, Polish, Portuguese (Brazil), and Portuguese (Portugal) translations.
= 1.8.2 =
* Tweak - Make scrollable tables fill content width.
* Tweak - Improve widget alignment precision.
* Tweak - Remove paginate link default color.
* Fix - Future event post permalinks not found.
= 1.8.1 =
* Feature - Ability to display multiple widgets on one line by aligning left and right.
* Tweak - Increase league table row height only when logos are displayed.
* Fix - Taxonomy selection not displaying in admin after WordPress 4.2 update.
* Localization - Add nagashitw, jikji96, and edesl to translation team.
* Localization - Update Czech, German, Finnish, Portuguese, Korean, Italian, and Spanish translations.
= 1.8 =
* Feature - Games Behind calculation added to equation builder.
* Feature - Home Record and Away Record calculation added to equation builder.
* Feature - Add option to reverse team order in events.
* Tweak - Allow inline results editing only if user has permissions.
* Tweak - Allow underscore in equation variable names.
* Tweak - Update welcome page with free Rookie theme link.
* Tweak - Group sport presets into more descriptive categories.
* Tweak - Display module descriptions in admin.
* Tweak - Combine player and staff modules.
* Tweak - Move mode setting to event page.
* Tweak - Add option to show only top-level positions in events.
* Tweak - Change Rounding to Decimal Places for clarity.
* Tweak - Change Player Performance to Box Score.
* Tweak - Add proper editing capabilities to Team Manager role.
* Fix - Empty positions hidden in box score.
* Preset - Update baseball preset.
* Localization - Add Kosovo to countries list.
* Localization - Use standard localization functions to improve translatability.
* Localization - Update Spanish and Japanese translations.
= 1.7.7 =
* Tweak - Add option to filter teams in event by competition and season with no filter as default setting.
= 1.7.6 =
* Fix - Modules sidebar not displaying in admin.
= 1.7.5 =
* Fix - Calendars empty when no teams selected.
= 1.7.4 =
* Feature - Filter teams by competition and season on page load when editing event.
* Feature - Enable multiple team selection in calendars.
* Feature - Ability to install free starter theme from modules page.
* Tweak - Use YouTube for tutorials instead of Vimeo.
* Localization - Update Finnish, Dutch, Czech, Italian, and Polish translations.
= 1.7.3 =
* Tweak - Add option to hide/show player statistics.
* Tweak - Always load overview, widgets, and importers.
* Fix - Notice displaying in player statistics when no players available.
* Localization - Update Greek, Polish, Finnish, Dutch, and Icelandic translations.
= 1.7.2 =
* Fix - Player positions disappearing in event page.
* Fix - Individual mode automatically loading by default.
* Localization - Update Polish translation.
= 1.7.1 =
* Fix - Activation error related to server limitations.
* Localization - Update Greek translation.
= 1.7 =
* Feature - Enable multiple seasons and competitions to be selected for events, calendars, player lists, and league tables.
* Feature - Enable primary performance selection.
* Feature - Enable event result columns to be displayed automatically.
* Feature - Enable switching overview, widgets, and importers on and off via modules.
* Feature - New color scheme selector.
* Feature - New video tutorials module.
* Feature - Allow event performance tables to be split by team and by player position.
* Feature - Allow extras row to be displayed in event performance.
* Tweak - Display event venue address below map.
* Tweak - Display plugin and theme recommendations only to network admins.
* Tweak - Hide player details section if none available.
* Tweak - Link module request to form instead of email.
* Fix - Responsive table scrollbar causing horizontal page scrolling.
* Fix - Misplaced config meta boxes.
* Fix - Scrollbar appearing in countdown widget.
* Fix - Event blocks template not honoring link events setting.
* Fix - League table position calculations for tied teams.
* Fix - Filter out empty results when viewing events in admin list view.
* Fix - Invalid array issue when viewing league tables.
* Preset - Enable sport presets to define plugin options.
* Preset - Update cricket and ice hockey presets.
* Localization - Number changed to Squad Number.
* Localization - Update Polish, French, Czech, Dutch, Kannada, Finnish, Swedish, German, Russian, Greek, Portuguese, and Japanese translations.
= 1.6.1 =
* Feature - Countdown moved to module and now able to display team logos.
* Feature - Add option to show or hide event list titles.
* Tweak - Display latitude and longitude fields when adding venues.
* Fix - Calculating equations with nested parentheses.
* Fix - Minor meta box mislabeling.
* Preset - Add Lacrosse preset.
* Localization - Update Polish, French, Czech, Dutch, Kannada, Finnish, and Swedish translations.
= 1.6 =
* Feature - New modules page to quickly toggle additional features.
* Feature - Option to automatically populate player list and league table based on criteria.
* Feature - Display link to CSV importer at the top of admin list pages.
* Feature - Update jQuery dataTables to version 1.10.4.
* Feature - Wrap responsive tables via script.
* Feature - New API functions for team abbreviations.
* Feature - Enable searching team names in event edit screen.
* Refactor - Enable global setting to use plugin as team-vs-team or player-vs-player (beta).
* Refactor - Use 3-letter FIFA country codes with fallback for 2-letter codes.
* Refactor - Merge scrollable and responsive settings.
* Tweak - Make AJAX shortcodes hookable for extensions and modules.
* Tweak - Mode maps setting to events tab.
* Tweak - Highlight jobs link in admin menu when editing a job.
* Tweak - Hide theme notice from welcome pages.
* Tweak - Prepend prefix to frontend CSS selectors.
* Tweak - Change Team Results to Event Results.
* Tweak - Display result rows only for teams that have been selected.
* Fix - League table displaying zeroes when competition is selected and season is set to all.
* Fix - Notice when players don't exist in event.
* Fix - Career totals not displaying in player profiles.
* Fix - Player performance displaying rows when no team is selected.
* Fix - Events linking in countdown widget and event list when option is turned off.
* Fix - Option to hide event blocks title.
* Fix - Event logos displaying different images when teams are not selected.
* Preset - Add default labels for overtime in baseball and basketball presets.
* Preset - Add Counter-Strike: Global Offensive preset.
* Localization - Update list of countries for nationality selection.
= 1.5 =
* Feature - New inline quick result editing for events.
* Feature - Automatically detect event outcome based on user-defined conditions.
* Feature - Enable individual players to compete in events.
* Feature - Add new API functions for theme developers.
* Feature - Add event list time/results formatting options.
* Feature - Add option to display player career totals.
* Feature - Add option to display team logos in event lists.
* Feature - Add option to display venue in event blocks.
* Feature - Split iCal feed links for Apple Calendar, Google, and Outlook.
* Refactor - Move Staff to dedicated menu link.
* Refactor - Load sportspress.php template as a fallback only.
* Tweak - Add caption header to event blocks.
* Tweak - Add selector classes to event venue rows.
* Tweak - Remove line breaks after template output.
* Tweak - Disable responsive event performance when icons are shown.
* Tweak - Update default color scheme.
* Tweak - Update player gallery thumbnail markup.
* Tweak - Sort Player positions dropdown by slug.
* Tweak - Frontend styling to add margins and fix overflows.
* Fix - Countdown datetime format.
* Fix - Page slug conflict with SendPress.
* Fix - Missing sample event video link.
* Fix - iCal feed formatting when venue location is not set.
* Preset - Update presets to include automatic outcome conditions.
* Localization - Add Puerto Rico to countries list.
* Localization - Update Polish, German, Spanish, Russian, Finnish, Italian, Armenian, Greek, Dutch, Turkish, French, and Bengali translations.
= 1.4.7 =
* Feature - New staff shortcode and widget to display staff photo and details.
* Tweak - Display player photo in player details shortcode.
* Tweak - Sample event csv to reflect soccer preset.
* Fix - Saving a manual offset timezone.
* Preset - Add player positions to volleyball preset.
* Localization - Update Turkish, Italian, Polish, Finnish, and French translations.
= 1.4.6 =
* Tweak - Include all events that have results in league table calculations.
* Fix - Duplicate Jobs selector in Edit Staff page.
* Preset - Update basketball preset column priorities.
* Localization - Update Finnish, Polish, Italian, Greek, Dutch, Turkish, and Russian translations.
= 1.4.5 =
* Fix - Away team players not being displayed without players in home team.
* Fix - Primary team results always using default setting.
* Localization - Update Finnish and Spanish translations.
= 1.4.4 =
* Feature - Automatically select event venue based on home team.
* Fix - Featured images not displaying in some themes.
* Preset - New Floorball preset.
* Localization - Update Finnish and Armenian translations.
= 1.4.3 =
* Tweak - Update API functions for events and teams.
* Tweak - Update sample video links.
* Fix - Remove calendar link background color for more consistent styling.
* Localization - Update Finnish, Italian, Russian, and Spanish translations.
= 1.4.2 =
* Tweak - Remove solid color from base stylesheet to improve integration.
= 1.4.1 =
* Fix - League table positions not sorting by sort order.
= 1.4 =
* Feature - New welcome page with intro video and separate tabs.
* Feature - New iCal feeds for event calendars.
* Feature - Add date range selector to event calendars.
* Feature - Ability to insert sample data during installation.
* Feature - Assign teams same position in league table when all values are tied.
* Feature - Display time/results between home and away teams in event list.
* Feature - Theme-specific stylesheets to apply when third-party theme is active.
* Feature - Make event lists sortable.
* Feature - Add team and event logo templates.
* Feature - Add player and staff photo templates.
* Feature - Option to hide Rank column in player lists.
* Feature - Option to toggle frontend templates per post type.
* Feature - Option to use abbreviated team names.
* Feature - Option to enable comments in events articles.
* Refactor - Change label for League to Competition.
* Tweak - Bold and apply class to highlighted team name in league table.
* Tweak - Remove team from venue hierarchy in overview.
* Tweak - Admin editor styles to match WordPress 4.0 inline editor.
* Tweak - Display performance icons in admin.
* Tweak - Change default sport to Custom.
* Tweak - Display none when no team available for player.
* Tweak - Permanently delete config post types when sent to trash.
* Tweak - Add hooks to widgets, shortcodes, and templates for integration.
* Fix - Display team checkbox only once in player admin.
* Fix - CSV team importer not saving all fields.
* Preset - Adjust player positions in sport presets.
* Preset - Add Bats / Throws metric to Baseball preset.
* Preset - Add Bat brand metric to Cricket preset.
* Localization - Make Video and Current Teams translatable.
* Localization - Auto-load RTL stylesheet.
* Localization - Include only compiled languages to reduce overall size.
* Localization - Apply text options to translations.
* Localization - Update Dutch, French, Armenian, Russian, Croatian, German, Greek, Thai, Japanese, Bosnian, Turkish, Spanish, Arabic, Italian, and Polish translations.
= 1.3.2 =
* Integration - WPML compatibility.
* Feature - Option to set number of columns in player gallery.
* Tweak - Remove line break after templates.
* Tweak - Update plugin icon.
* Tweak - Update welcome screen badge.
* Tweak - Display admin menu label as Players & Staff.
* Fix - Typo in sample CSV import file.
* Fix - Apply default color scheme when left blank.
* Fix - Notices where taxonomies or posts not found.
* Localization - Update source strings.
* Localization - Update French and Dutch translations.
= 1.3.1 =
* Fix - Player list shortcode meta displayed on league table edit page.
* Localization - Update Dutch translation.
= 1.3 =
* Feature - New overview page with interactive sitemap.
* Feature - New and improved CSV import tools for bulk adding.
* Feature - New full time minutes setting in events for statistics calculation.
* Feature - New roles taxonomy for staff.
* Feature - Option to display home/away teams in event lists.
* Feature - Option to display league and season in event blocks.
* Feature - Option to choose all leagues and seasons in league table.
* Feature - Option to choose all leagues and seasons in player list.
* Feature - Choose between displaying values and icons in event player performance.
* Feature - Option to display photos in player list.
* Feature - Filter players by league and season in admin.
* Feature - Select a team to highlight in league tables.
* Feature - Display league tables in team pages.
* Feature - Display total statistics per player.
* Feature - Add team option to countdown widget.
* Feature - Add scrollable tables option.
* Feature - Ability to adjust overall table columns per team.
* Refactor - Remove individual mode in favor of upcoming hybrid.
* Refactor - Use global linking options per post type.
* Refactor - Display player position in profile.
* Tweak - Reorganize settings options.
* Tweak - Update SportsPress icon.
* Tweak - Rename widgets for better usability.
* Tweak - Add div wrappers to templates for easier targeting.
* Tweak - Show or hide admin checkboxes based on event format.
* Tweak - Make event list and blocks pagination independent.
* Tweak - Trim admin table padding.
* Tweak - Display all event performance columns by default.
* Fix - Event list results column not always displaying.
* Preset - New Rugby Union preset.
* Preset - New League of Legends preset.
* Preset - New DotA 2 preset.
* Preset - Group into traditional sports and esports.
* Preset - Add missing primary results and column priorities.
* Localization - Fix multilingual post linking.
* Localization - Thai translation by Xyteton.
* Localization - Add Xyteton, tyby94, & SilverXp to translation team.
* Localization - Update translations from Transifex.
= 1.2.8 =
* Preset - Add water polo preset.
* Localization - Add Macedonian translations.
* Localization - Update Armenian, Bulgarian, Finnish, German, Greek, Japanese, & Norwegian translations.
= 1.2.7 =
* Fix - Responsive table columns hidden when script active.
* Localization - Update Finnish & German translations.
= 1.2.6 =
* Fix - Number format rounding issue.
= 1.2.5 =
* Fix - Data calculations for values above 1000.
* Localization - Update French, Finnish, Dutch, Greek, & Armenian translations.
= 1.2.4 =
* Fix - Team URL and abbreviation not saving when adding new team.
* Localization - Update Armenian, Finnish, French, & German translations.
= 1.2.3 =
* Feature - Display event results in admin teams columns.
* Tweak - Ensure teams are in order in event results.
* Fix - Streaks calculator in league tables.
* Fix - Streaks calculator in team columns.
* Localization - Update German, Greek, & Norwegian translations.
= 1.2.2 =
* Tweak - Display link to docs instead of themes.
* Fix - Enable hide theme support notice.
* Fix - Typo in table caption classes.
= 1.2.1 =
* Feature - Enable option to display team's total player performance per event.
* Tweak - Order player gallery positions by slug.
* Tweak - Remove unused Played column setting from Player List widget.
* Fix - League Table widget columns setting independent from post setting.
* Fix - Event List widget columns setting not being applied.
* Fix - Row limits in League Table, Player List, & Event List shortcodes.
* Localization - Update Armenian, Finnish, & French translations.
= 1.2 =
* Feature - Shortcode dropdown menu added to page and post editor.
* Feature - New shortcodes added to individual player profiles.
* Tweak - Add timezone setting in place of base country.
* Localization - Update translations.
= 1.1.8 =
* Tweak - Order player list positions by slug.
* Tweak - Wrap templates with div for frontend styling.
* Fix - Date format in sample events CSV.
* Localization - Fix WPML duplicate posts.
* Localization - Update Armenian, Finnish, French, German, Norwegian, & Spanish translations.
= 1.1.7 =
* Fix - Inconsistent country code for Wales.
* Fix - Localize post date month names.
* Fix - Warning message when changing mode on welcome page.
* Localization - Update Armenian, French, Italian & Norwegian translations.
= 1.1.6 =
* Fix - Maps not loading in admin.
= 1.1.5 =
* Tweak - Wrap post content with div for easier templating.
* Localization - Update French translation.
* Localization - Update Spanish translation.
= 1.1.4 =
* Feature - Add home venue option in team admin.
* Tweak - Move editor meta boxes to bottom of post edit page.
* Tweak - Remove link to league and season archives.
* Fix - Previous and next post function in some themes.
* Fix - Duplicate team checkboxes in player.
* Preset - Add table tennis preset.
* Preset - Update ice hockey preset.
= 1.1.3 =
* Fix - Display all event result columns by default.
= 1.1.2 =
* Feature - Event outcome abbreviation for streak column.
* Fix - League table calculations for constants with 2 or more digits.
* Preset - Add ice hockey preset.
* Preset - Add volleyball preset.
* Localization - Update Armenian translation.
* Localization - Update Finnish translation.
* Localization - Update German translation.
= 1.1.1 =
* Tweak - Check if equation is attempting to divide by zero to prevent errors.
* Fix - Player statistics meta box message.
* Preset - Make baseball preset appear in dropdown.
= 1.1 =
* Feature - Enable individual sport mode.
* Feature - Enable displaying player lists on team pages.
* Feature - Enable player performance reordering in events.
* Feature - Enable changing player numbers and positions per event.
* Feature - Add date selector to display today's events and this week's events in calendar.
* Feature - Option to redirect team permalinks to official team website instead of team page.
* Feature - Display staff in event performance section.
* Feature - Add column selector to player profiles and player lists.
* Feature - Add option to show or hide player performance section in events.
* Feature - Add global padding option to SportsPress settings.
* Tweak - Force decimals to display when precision is set.
* Tweak - Add SportsPress post types to At a Glance section in dashboard.
* Tweak - Filter checklists by league and season.
* Tweak - Display layout type in admin.
* Tweak - Improve roles and permissions.
* Fix - Some select all checkboxes defaulted to being checked.
* Refactor - Use gettext filter to alter frontend text.
* Preset - Add American Football preset.
* Preset - Add Australian Rules Football preset.
* Preset - Add baseball preset.
* Preset - Add cricket preset.
* Preset - Add darts preset.
* Preset - Add handball preset.
* Preset - Add netball preset.
* Preset - Add Rugby League preset.
* Preset - Add squash preset.
* Preset - Add tennis preset.
* Preset - Update soccer preset.
* Localization - Armenian translation by ArtakEVN.
* Localization - Update translations.
= 1.0.4 =
* Fix - Shorthand php notation removed for better compatibility.
* Localization - Update Finnish translation.
* Localization - Update Greek translation.
= 1.0.3 =
* Tweak - Hide theme integration notice.
= 1.0.2 =
* Fix - Initialize columns array in player list class.
= 1.0.1 =
* Fix - Conditional install error relating to post types function.
= 1.0 =
* Feature - New drag and drop equation builder.
* Feature - Add team website link in admin.
* Feature - Enable searching for post user when there are more than 10.
* Feature - New event manager role that can publish and manage events only.
* Tweak - Fix league table alignment and responsive height.
* Tweak - Set maximum size of event blocks logos.
* Tweak - Add option to link venues in event list.
* Tweak - Remove margin between table and scrollbar.
* Tweak - Display delimiter between team logos under event title.
* Tweak - Hide media, comments, and tools from feature limited users.
* Tweak - Hide previous and next post links for custom post types.
* Tweak - Rounding explicitly displays all decimal places.
* Refactor - Combine players and staff in admin menu.
* Fix - Duplicate team logos in event blocks.
* Fix - Query future events for next team event.
* Fix - Live countdown in admin dashboard.
* Fix - Display all current teams in player profile.
* Localization - Norwegian Bokmål translation by sijo.
* Localization - Update translations.
= 0.9.4 =
* Tweak - Force delete preset variables when switching sports in settings.
* Fix - Apply player gallery limit.
* Fix - Display localized team results string.
* Refactor - Use more common thumbnail sizes.
* Localization - Portuguese (Portugal) translation by Andrew_Melim.
= 0.9.3 =
* Fix - Player list columns not displaying.
= 0.9.2 =
* Fix - Duplicate editor fields in team edit screen.
= 0.9.1 =
* Tweak - Add text domain to configure descriptions.
* Tweak - Change default country to US.
* Fix - Event block results display for teams without logos.
= 0.9 =
* Feature - Import tool added for importing staff from CSV file.
* Feature - Add checkboxes to select player statistics columns.
* Feature - Add option to select Google Map type.
* Feature - Add option to display team logos under event title.
* Feature - Enable player metrics and statistics selection in player list widget.
* Feature - Enable linking event blocks and event list to team pages.
* Tweak - Move leagues and seasons to SportsPress submenu.
* Tweak - Use singular post type slugs by default for consistency with WP core.
* Tweak - Remove alternate color in favor of link color setting.
* Tweak - Enable scrollable tables to prevent overflow.
* Tweak - Add helper text to venue location picker.
* Tweak - Adjust markup and remove link in league table caption.
* Tweak - Insert group name anchors to player list.
* Tweak - Display post type counts in system status.
* Fix - Event list results calculation when team column unchecked.
* Fix - Display player group names.
* Preset - Add snooker preset.
* Localization - Finnish translation by JuKi and hanro.
* Localization - Chinese translation by dic_2008.
* Localization - Dutch translation by valentijnreza.
= 0.8.6 =
* Fix - Issue adding teams to events.
= 0.8.5 =
* Fix - Issue saving new venues.
= 0.8.4 =
* Feature - Add option to limit number of teams per event.
* Feature - Show venue option in Countdown widget.
* Feature - Enable multiple current teams per player.
* Feature - Format performance data for use in templates.
* Feature - Add next event function to team for template.
* Refactor - Adjust theme template loader for venues and seasons.
* Tweak - Replace featured image text in admin.
* Tweak - Use wider map zoom setting.
* Tweak - Make SportsPress tables full width by default.
* Fix - Team filter in admin.
* Fix - Displaying 1 view as plural.
= 0.8.3 =
* Feature - Enable using events started and substituted in statistics equations.
* Tweak - Remove deprecated MySQL version function from System Status page.
* Fix - Adjust styling to display select boxes in admin.
= 0.8.2 =
* Fix - Add content in main loop only.
= 0.8.1 =
* Tweak - Output player statistics in system status.
* Tweak - Prepend templates to content instead of outputting directly.
* Fix - Enable metrics usage in individual player statistics.
= 0.8 =
* Feature - New shortcode event_results.
* Feature - New shortcode event_details.
* Feature - New shortcode event_performance.
* Feature - New blocks layout to display calendars in fixtures/results style.
* Feature - New player statistics calculate values using performance and metrics.
* Feature - New staff profiles.
* Feature - New System Status screen in admin.
* Feature - Add status selector to calendars and event widgets.
* Feature - Add ability to display statistics and metrics in player lists.
* Feature - Add time/results column to event list.
* Feature - Link WP user roles with players and staff.
* Feature - Display player substitutions in event page.
* Feature - Option to group player lists by position.
* Feature - Option to display outcomes in event results.
* Refactor - Player profiles now use statistics and performance.
* Refactor - Split admin CSS files for better performance.
* Tweak - Display player numbers in admin.
* Tweak - Move SportsPress settings to top-level page.
* Tweak - Link date to event page in event list.
* Tweak - Load Google Maps script only when needed.
* Tweak - Add descriptions to configure screen for clarity.
* Tweak - Create dedicated settings tab for text settings.
* Tweak - Remove redundant border from pagination table.
* Tweak - Display players and teams as total count in admin.
* Fix - Display player number when 0 or 00.
* Fix - Enable changing variable name or key from quick edit.
* Fix - Team data saving issue.
* Fix - Display all future events in venue archive.
* Fix - Display all metrics instead of filtering by position.
* Localization - Croatian translation by i__k.
* Localization - Greek translation by Spirossmil.
* Localization - Portuguese (Brazil) translation by rochester.
* Localization - Russian translation by Selskei.
* Localization - Slovenian translation by BOCo.