ThemeBoy
Forum Replies Created
-
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Team Sidebar Widgets@iconoclast50 You’ll first need to create a Calendar, then select the Team and choose a layout. If you require different widgets per team, try installing a per-page sidebar plugin like Simple Page Sidebars.
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] cricket point table@bikashthapa You can change the league table column labels via SportsPress > Settings > Configure tab. Scroll down to “Table Columns” and click “Edit” next to any of the labels. From the edit screen you can change the label.
p.s. This community forum is not regularly monitored, so it is much quicker to contact us via our support site for future queries.
We’ve been in touch via email, but I’ll post the answer here for others looking for a solution:
There is a line in the Gameday theme stylesheet that makes “h4.widget-header” float left, which is pushing widget content out of the visible box. There are 2 ways to solve this.
1. Add the following to the Custom CSS field in SportsPress > Settings:
.widget-container h4.widget-header { float: none; }
2. Find “h4.widget-header” in the Gameday stylesheet and comment out “float: left;” like this:
h4.widget-header {
color: #fff;
/* float: left; */
font: 700 18px/18px ‘Open Sans Condensed’, sans-serif;
margin: -10px 0 10px -10px;
padding: 5px 10px;
text-shadow: 1px 1px 0 #000;
text-transform: uppercase;
width: 280px;
}Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Or statements@inbou The current version does not have conditional statements. We may consider adding them in a future update. I’d be interested to know what you would like to use them for?
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] Question@stgfossoyeurs You’re right. A better (but more advanced) solution is to create your own page template for the player post type. Depending on your theme, this might be as easy as creating a copy of page.php and adding it to your theme folder as sportspress/single-player.php.
See https://sportspresspro.com/docs/theme-integration-guide/#custom-page-templates
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Question@stgfossoyeurs Glad you’re enjoying the plugin!
Custom post types are treated by WordPress as posts by default. (see http://codex.wordpress.org/Template_Hierarchy#Visual_Overview)
A workaround, if you want to use a page instead, is to insert shortcodes via the SportsPress icon in the editor, or by copying the shortcodes directly from players.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] tournament mode@felsites4p We’re making the switch to a SportsPress Pro to simplify updates, and to make sure that all modules are loaded with the correct version of SportsPress. The tournaments extension was planned to be priced more than the Club license, which will include tournaments and much more 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Player PerformanceHi Pedro,
The current version of the plugin will combine performance and statistics when displaying in player profiles. We’ll look into an option to split these tables in a future update. I’ll keep you posted 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Pro Vrs FreeHi James,
We haven’t removed any features from the free version. The Pro version includes all of our premium extensions bundled as an all-in-one plugin.
A multi-sports feature is scheduled for a future update to SportsPress Pro. I’ll let you know when it becomes available 🙂
@knut23 Thanks for the additional details. You’re right, it looks like the Protype script in that plugin is conflicting with jQuery in our countdown script. I’ll do some testing to push out a conflict-free version as soon as possible 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Positions of players@darkaiolos Don’t worry, by “strings” we are just talking about text, not code. Let me know if you’d be interested in joining the translation team, but no pressure at all 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Hooks OrderHi Pedro,
The player profile content is added either before or after the post content, so you’ll need to create a custom template to do this.
First, unhook all of the player content actions by adding these 3 lines to your theme’s functions.php:
remove_action( 'sportspress_single_player_content', 'sportspress_output_player_details', 10 ); remove_action( 'sportspress_single_player_content', 'sportspress_output_player_statistics', 20 ); remove_action( 'sportspress_single_player_content', 'sportspress_output_br_tag', 100 );Then, following this theme integration guide, create a file in your theme’s folder under
sportspress/single-player.php:Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] problem create a new teamWe’ve been in touch via our support site, so I’ll mark this as resolved.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Fatal error calendarWe’ve been in touch via our support site, so I’ll mark this as resolved.
For others having a similar issue: please increase your PHP memory limit by following the steps on this page: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Thanks for getting in touch with us directly. I’ll mark this one as resolved as we’ve been in touch via email 🙂