diff --git a/readme.txt b/readme.txt index a4393610..6350ffdd 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: sport, sports, club, clubs, teams, statistics, stats, metrics, data, fixtu Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=support@themeboy.com&item_name=Donation+for+SportsPress Requires at least: 3.8 Tested up to: 4.0 -Stable tag: 1.4.2 +Stable tag: 1.4.3 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -13,35 +13,35 @@ SportsPress is an extendable all-in-one sports data plugin that adds club and le == 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 teams, players, and staff. +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 = -> "*The SportsPress plugin brings in some amazing features to your WordPress site and league management capabilities. If you are looking forward to create a sports related website on WordPress, you must have a look at SportsPress plugin.*" — [indexwp.com](http://www.indexwp.com/sportspress-plugin-review/) +> "*The SportsPress plugin brings in some amazing features to your WordPress site and league management capabilities. If you are looking forward to create a sports related website on WordPress, you must have a look at SportsPress plugin.*" — [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.com](http://news.softpedia.com/news/Script-of-the-Day-SportsPress-409247.shtml) +> "*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.org.uk](http://www.gbsport.org.uk/5-great-wordpress-plugins-for-sport/) +> "*SportsPress is our number 1 WordPress plugin for sport!*" — [GBSport](http://www.gbsport.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.*" — [clubthemes.com](http://clubthemes.com/awesome-sporting-templates-themes-wordpress-joomla/) +> "*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 -* Team Profiles with Player List +* Club Profiles with Player List * Automated League Standings with Club Logos * Events (Fixtures & Results) with Player Performance * Events Calendar -* Player Profiles & Statistics Per Position +* Player Profiles & Statistics * Player Lists * Staff Profiles * Season Archives * Venue Information & Maps * Statistics & League Table Columns Configuration * Sport Presets -* Team & Individual mode * Import Events, Teams, 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://sportspresspro.com/). @@ -185,6 +185,9 @@ Yes, CSV importers are included with the plugin. Go to Tools > Import and choose == Changelog == += 1.4.3 = +* Localization - Update Spanish translation. + = 1.4.2 = * Tweak - Remove solid color from base stylesheet to improve integration. diff --git a/sportspress.php b/sportspress.php index 64dec856..dce569b1 100644 --- a/sportspress.php +++ b/sportspress.php @@ -3,7 +3,7 @@ * Plugin Name: SportsPress * Plugin URI: http://themeboy.com/sportspress/ * Description: Manage your club and its players, staff, events, league tables, and player lists. - * Version: 1.4.2 + * Version: 1.4.3 * Author: ThemeBoy, brianmiyaji, aylaview * Author URI: http://themeboy.com * Requires at least: 3.8 @@ -26,14 +26,14 @@ if ( ! class_exists( 'SportsPress' ) ) : * Main SportsPress Class * * @class SportsPress - * @version 1.4.2 + * @version 1.4.3 */ final class SportsPress { /** * @var string */ - public $version = '1.4.2'; + public $version = '1.4.3'; /** * @var SporsPress The single instance of the class @@ -296,7 +296,7 @@ final class SportsPress { * Ensure theme and server variable compatibility and setup image sizes. */ public function setup_environment() { - add_theme_support( 'post-thumbnails' ); + add_theme_support( 'post-thumbnails', sp_post_types() ); // Add image sizes add_image_size( 'sportspress-fit-medium', 300, 300, false );