ThemeBoy
Forum Replies Created
-
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] User Drop Down MenuHi there,
Thanks for your feedback. This is a great idea! We’ll be adding a search feature to the user selector in the next update, and will also look into using email addresses for search.
The update will become available at the end of this week.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] players list wiht teamHi Massimo,
This is also a great suggestion. We’ll definitely add a “Team” column in the update later this week 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] setting: link venuesHi Massimo,
Thank you for your feedback.
The “Link venues” option in the Event Options page will only remove the link from the venue displayed on a single event page. We don’t seem to have an option to remove the link from an event list yet.
The next update will contain this option. Thanks for pointing this out 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] IcehockeyHi again!
It looks like the main loop (theloop.php) contains the content output and the meta tags that you want to remove.
It might be easier to edit the loop directly. You can add conditions before outputting the post meta, for example:
<?php if ( ! is_singular( 'sp_team', 'sp_player' ) ): ?> <p class="post-meta"> ... </p> <?php endif; ?>Hope this helps 🙂
Hi again!
Thanks for following up.
We’re looking to add this feature in an update soon, although it didn’t make it into version 0.9. SportsPress is an open source project so it will remain free, even after the official launch. We have a donate button on the main page of this plugin, and we’re also working on some premium themes and extensions that you may be interested in. The first theme and extension will be released at the end of this week 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] TableHi there,
Thanks for your feedback.
The current version does not differentiate between home and away games, but we’ll be adding this functionality in a future update.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] IcehockeyHi Mike,
Thanks for your question.
The way to remove this is to create a copy of the single post template for SportsPress to use. In your theme folder, you should see a file called single.php. Copy that file into a new folder called sportspress with the names single-player.php and single-team.php.
The folder structure should now be:
wp-content/themes/__your_active_theme__/sportspress/single-player.php
wp-content/themes/__your_active_theme__/sportspress/single-team.phpThen, edit these files and remove the code between <p class=”post-meta”> and the next </p>.
Hope this helps 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] own constantsThanks for clarifying.
The problem with this is that the values of column A and column B would need to be determined first before calculating the Total column. We want to make it as flexible as possible, but this may cause problems.
For example:
Column A = Outcome A
Column B = Outcome B
Column Total = Column A + Column BWould work, but if we change Column A to:
Column A = Outcome A + Column Total
Then there would be an infinite loop, which would break the site. For the purposes of this plugin, it is safer to use these equations instead:
Column A = Outcome A
Column B = Outcome B
Column Total = Outcome A + Outcome BThis means that if the equation for Column A is more complicated, we should still reproduce that same equation as part of the Column Total equation.
I hope that makes sense 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Season FilterHi again 🙂
This is something we’d like to implement but haven’t done so yet. In the current version, the league and season dropdowns will not affect the team options. We’ll be adding this feature in a future update.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] own constantsHi again!
I’m not sure I understand the idea. Could you explain it in a bit more detail?
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] WidgetsHi Kev,
Thanks for your ongoing feedback.
A tabbed widget is a great idea! We’ll look into a solution to include in core or as a separate plugin.
Regarding the widgets, both Event List and League Table have an option called “Columns” where you can choose which columns to display. I’d recommend disabling some of the columns to create shorthand tables.
Hope this helps 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] ColumnsIt looks like the Table Columns are missing. Go to SportsPress > Settings > Configure and scroll down to Table Columns then click “View All”. Check the Trash to make sure it is empty, then add a new column with PTS as the title.
The equation for PTS should be W x 3 + L.
We’re releasing a new version next week with an updated equation builder which will make this part easier 🙂
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] team results don't localizeRegarding showing team results, unfortunately there is no built-in option to display in this format.
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] team results don't localizeHi there,
Thanks for letting us know about this issue. There was a typo, which we’ve fixed in version 0.9.4
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] own constantsHi there,
Thanks for your question.
We’re working on a new equation builder for version 1.0, but for now the solution would be to multiple and add numbers needed to get the constant.
For example,
[WIN] x [8] x [2] x [100] x [100]
You could in theory also combine constants which would be recognized as a single constant, for example [1] [6] would be the same as 16. Although of course this isn’t much use without a “0” option, which we’ll be adding in the next update as well 🙂