K
Forum Replies Created
-
Forum: Plugins
In reply to: [Fancy Slideshows] Display problemI assume the issue is resolved?
Forum: Plugins
In reply to: [Fancy Slideshows] Problem with sliderIt would be nice if you posted some more information, so I directly know where to look.
What Theme are you using?
I recognized that you somehow have additional-tags in the slideshow. How did this get there? I cannot help you if you customize the plugin codeForum: Plugins
In reply to: [LeagueManager] Contribution to pluginI appreciate your offer. What is your experience in developing? Do you have specific ideas to improve the plugin?
Forum: Plugins
In reply to: [LeagueManager] Manage leagues partnerssorry, this is not possible. This would require a too detailed rights management
Thanks for the detailed descrption. In version 3.9.8 this should be fixed
Forum: Plugins
In reply to: [LeagueManager] 3-2 scores for volleyball, get 2 and 1 point?currently this would require some manual adjustment of points. In the admin panel standings table there is a column to add or take away points for teams. You need to reload the page to reflect the changes
Forum: Plugins
In reply to: [LeagueManager] [BUG] Editing a season creates a real disasterI am deeply sorry for this issue. I have just committed a fix that should resolve this issue.
I would appreciate that you either send me your template files or set this thread to resolved if the issue no longer exists
Forum: Plugins
In reply to: [ProjectManager] Import DataHey, if you send me the file, I will do some tests: kolja (dot) schleich (at) googlemail com
Any News? I would like to work on the issue
Forum: Plugins
In reply to: [LeagueManager] All matches in 0 – 0 (AET)@defkon1: Could you solve the Problem with the Code I posted?
Forum: Plugins
In reply to: [LeagueManager] All matches in 0 – 0 (AET)See here: https://wordpress.org/support/topic/shortcode-error-8?replies=5
And please use the search function. This has nothing to do with the Thread topic
Forum: Plugins
In reply to: [LeagueManager] All matches in 0 – 0 (AET)I am sorry, I don’t know how this could have happened. I have written a small function that will set all matches overtime with 0:0 score to empty fields. Be aware that this does cannot distinguish matches that really should have a 0:0 score! Use at your own risk
function cleanOvertime()
{
global $wpdb;// get all matches from database
$matches = $wpdb->get_results( “SELECT * FROM {$wpdb->leaguemanager_matches} ORDER By id ASC” );
foreach ( $matches AS $match ) {
$match->custom = stripslashes_deep(maybe_unserialize($match->custom));if ( count($match->custom) && $match->custom[‘overtime’][‘home’] == “0” && $match->custom[‘overtime’][‘away’] == “0” ) {
$match->custom[‘overtime’] = array(‘home’ => ”, ‘away’ => ”);
}
$wpdb->query($wpdb->prepare( “UPDATE {$wpdb->leaguemanager_matches} SETcustom= ‘%s’ WHEREid= ‘%d'”, maybe_serialize($match->custom), $match->id ));
}
}You can paste the above function code for example into functions.php of your theme. Then call it
cleanOvertime()and load your site once. Given the amount of your matches this could take a little. I will also include this function in future releases of the plugin.
Forum: Plugins
In reply to: [LeagueManager] All matches in 0 – 0 (AET)Did you insert the 0s or did the Plugin do that? Remove all the 0 in the Admin Panel and simply Leave the fields empty
You are using Basketball as sport Type?
Forum: Plugins
In reply to: [LeagueManager] referees matchCurrently not