axelkeller
Forum Replies Created
-
Forum: Plugins
In reply to: [GPX Viewer] language file, no descriptions shown on settings pageSorry,
these terms are not part of the plugin and not contained in any language files.
Forum: Plugins
In reply to: [GPX Viewer] map is not displayed properlySorry for the late response, but I don’t get informed about messages.
Did you try to use ”Uncategorized” or “Allgemein” ? That are the names of categories.
Forum: Plugins
In reply to: [GPX Viewer] WordPress HelpSimply add a shortcode (see installation).
You can also use a shortcode for a category. Then get a file list where you can click a stored track.
Forum: Plugins
In reply to: [GPX Viewer] Map does not show with default theme Twenty Twenty-FourThank you for this hint.
At the moment I have no idea what the difference is between classic and block themes. So I have to test with a block theme and figure out where the problem is caused.
This will take a while (when I find time for it).
Forum: Plugins
In reply to: [GPX Viewer] How I can use different map layers?Hi,
I really don’t know how to add a layer to a map. This was not intended in the plugin torso I took over. So different layers would cause a greater program extension.
I added the Open Topo Map, but this is quite hard coded. OSM and OTM maps are downloaded on demand.
Forum: Plugins
In reply to: [GPX Viewer] GPX TracknameHallo,
ja, das war ein Programmfehler, habe ihn gerade selbst entdeckt und korrigiert.
Forum: Plugins
In reply to: [GPX Viewer] MobileSorry,
this plugin was not made for small viewports. If I minimize a map it would appear that small that you would hurt your eyes.
So I think it is better to keep the map’s size and scroll on the smartphone if necessary.
Forum: Plugins
In reply to: [GPX Viewer] Nothing showed on category pageHi,
there is only one shortcode per page possible. Therefore only the first map is shown in your site.
If you will get multiple maps I recommend the shortcode for a list:[gpx-view category="<mycategory>"]
Forum: Plugins
In reply to: [GPX Viewer] gpx files not seen in media libraryHi,
when a gpx track is uploaded using the admin page, the track will be stored in
~/wp-content/uploads/gpx/<category>
and not under media.Forum: Plugins
In reply to: [GPX Viewer] How to add a track to an articleSorry, I saw your post just today. I’m not informed from WP about the messages.
With the version today (2.2.0) I added a shortcode that can be called from any WP-page.
[gpx-view category=”<mycategory>” gpx-file=”<filename>”]I hope that helps.
Forum: Plugins
In reply to: [GPX Viewer] Adding 2 or more map per pageUntil now there is no construction for variable number of maps. I had no need for that, but it could be done.
There is a javascript error in the console:
“Uncaught Error: Map container is already initialized.”I don’t know where this error appears, which console?
Forum: Plugins
In reply to: [GPX Viewer] Change category of uploaded track@lmacke: You can download the track, delete it from GPX Viewer and the upload it again in the desired category.
@drohdekage: A previous topic figured out the reason, great! I could not reproduce the problem on my installation. With version 2.1.6 the problem should be resolved.
Forum: Plugins
In reply to: [GPX Viewer] Categories empty, file list empty, uploading worksMany thanks to @keithhp1 !!!
He figured out the reason. The problem depended on the prefix of db table names, which may be different in various WP installations. So I could not reproduce the error in my installation.Unfortunately I got the info about unresolved topics just now.
Forum: Reviews
In reply to: [GPX Viewer] Nice idea – but doesn’t work at all…The plugin is working in over 200 installations. As long as you don’t explain the problem I’m unable to do anything.
Sometimes I look to posted comments. But unfortunately I don’t get informed about them via E-Mail.
Forum: Plugins
In reply to: [GPX Viewer] Categories empty, file list empty, uploading worksHello,
in my WP-installations there is a default category called “General” resp. “Allgemein”. It can be seen in the admin page “Articles -> Categories” and should appear at least in the category list on top of the GPX files admin page.Uploaded gpx files are then stored in ~wp-content/upload/gpx/general/ and can be included into an article with:
<?php
echo gpx_view(array(‘src’ => $filepath
[, ‘title’ => $track_name]
[, ‘color’ => $track_color]
[, ‘width’ => $track_width] ));
?>where $filepath = <absolute path>/wp-content/uploads/gpx/genereal/<file>.gpx
regards