K
Forum Replies Created
-
Forum: Plugins
In reply to: [ProjectManager] Upgrade ProjectManager | databaseYou could manually update the database version with the following code
$options = get_option( 'projectmanager' ); $options['dbversion'] = PROJECTMANAGER_DBVERSION; update_option('projectmanager', $options);
Put these lines into functions.php, for example, and load any page.
I need to point out that I cannot tell if your database and image folder structure is correct as, for reasons I don’t understand, the upgrade stopped with a timeout.
If your database structure is not correct you should receive error messages about missing columns. Simply post any upcoming errors.
The image folder structure needs to look like the following
projects/backups
projects/captchas
projects/Project-1
projects/Project-2
…
projects/Project-NThe important folders are all the Project-X folders. The backups folder only contains media backups you can also re-create in the import/export panel. The captchas folder is also dynamically generated and contains captchas from the frontend dataset forms
Forum: Plugins
In reply to: [LeagueManager] Problem adding multiple gamesIn addition, in my plugin the Form response Page is different to the Match edit page
Forum: Plugins
In reply to: [LeagueManager] Problem adding multiple gamesI would be interested what Plugin you use, but it certainly is not mine! I can only guess that it is some kind of modification. The match edit Page is different to mine, with additional fields (None-league & Time tba) and different form types.
Forum: Plugins
In reply to: [LeagueManager] Contribution to pluginDefkon1, please contact me by email if you are still interested in contributing to the plugin.
Forum: Plugins
In reply to: [LeagueManager] Problem adding multiple gamesstrange, I have no problems adding multiple matches. Currently, I have no idea where the problem could come from.
Could you post a screenshot of the match adding page before you hit the submit button and also the message that appears afterwards?
Forum: Plugins
In reply to: [LeagueManager] Widget size increasedwhat about a link to your website?!?
you can adjust all the styles through your theme stylesheetForum: Plugins
In reply to: [LeagueManager] No standings display and cannot add new teamsthen go to any page in the frontend and post the output
Forum: Plugins
In reply to: [LeagueManager] No standings display and cannot add new teamsMaybe it’s easier this way. Copy the following code to your functions.php
function showDatabaseColumnsLeaguemanager() { global $wpdb; $tables = array($wpdb->leaguemanager, $wpdb->leaguemanager_teams, $wpdb->leaguemanager_matches, $wpdb->leaguemanager_stats); foreach( $tables AS $table ) { $results = $wpdb->get_results("SHOW COLUMNS FROM {$table}"); $columns = array(); foreach ( $results AS $result ) { $columns[] = "<li>".$result->Field." ".$result->Type.", NULL: ".$result->Null.", Default: ".$result->Default.", Extra: ".$result->Extra."</li>"; } echo "<p>Table ".$table."<ul>"; echo implode("", $columns); echo "</ul></p>"; } } showDatabaseColumnsLeaguemanager();
Forum: Plugins
In reply to: [LeagueManager] Problem adding multiple gameswhat sport type do you use?
Forum: Plugins
In reply to: [LeagueManager] Can't access wordpress backend after upgrade to 4.0.8Well, sorry, but how do you think I can help on this?
Forum: Plugins
In reply to: [Fancy Slideshows] Images not in slideshowGo to Appearance -> Customize. There should be a menu item Slider with submenu Activate Slider. There should be two options “Check to activate slider.” and “Check to use Fancy Slideshows”. Check both options.
This will remove the theme default slider, but add a sidebar called “Frontpage Slider”, where you can add a slideshow widget.
Before you do that, go to your media management. There will be a submenu Gallery where you can add as many galleries you want. Basically, they are categories for media files (So far only images are supported for slideshows).
You can then add the images you want to appear in a slideshow into a gallery. In your case you also need to add the image caption to be your current slide title (in your green box) and image description to be your current subtitle (in your white box).Then simply add the slideshow widget to the Frontpage Slider sidebar and choose your image gallery as slide source. As slide overlay selet “Title & Description”. In addition you need to select as overlay style “Esteem”, which I added to reflect your current slide overlay. The other settings are up to you.
The slide images are automatically cropped to the slideshow container dimensions you choose.
Forum: Plugins
In reply to: [ProjectManager] Upgrade ProjectManager | databaseany updates?
Forum: Plugins
In reply to: [LeagueManager] Spiel um die Relegation der 3.Liga (soccer)Ich habe beschlossen dieses feature hinzuzufügen. Zus?tzlich zur Heim/Ausw?rtstabelle auch noch die Tabelle nach jedem Spieltag ??
Forum: Plugins
In reply to: [LeagueManager] Show all games that day of a leagueI will need more information in order to help you. In what context do you use the code? If you only want to show the team page, I recommend you use the shortcode
[team id=X]
Forum: Plugins
In reply to: [LeagueManager] No standings display and cannot add new teamsI am not surprised by the error message. As I have stated before: your database user was or still is lacking the privilege to ALTER a databsae. Therefore, your database tables are lacking required columns.
I have asked you twice already to post the column names of your wp_leaguemanager and wp_projectmanager tables, which you haven’t even commented on …