Boris
Forum Replies Created
-
Forum: Plugins
In reply to: [Geotag] Using Geotag with ThemesSomething like
‘marker_query’ => ‘numberposts=1&cat=2’
Please have a look at this page: http://codex.wordpress.org/Function_Reference/WP_Query
Forum: Plugins
In reply to: [Geotag] Map will not show on category archivePlease have a look at this thread: http://wordpress.org/support/topic/using-geotag-with-themes?replies=4. Perhaps you may try my example first and then change the value for ‘marker_query’.
Forum: Plugins
In reply to: [Geotag] Geotag and iPhone PhotosYou were absolutely right. I found a small bug which caused the images to disappear. This bug didn’t appear in my testing environment, because of a slightly different server configuration. I tried to fix that – now it works on my website again…hope it does so on yours, too (it is still the 2.0 version).
Thanks for your feedback!
Forum: Plugins
In reply to: [Geotag] Geotag and iPhone PhotosHi, I found the problem and tried to solve it. Now it should also work with iPhone pictures. Try to download the Version 2.0 once again and replace the geotag.php with the new one…hope this works 🙂
Forum: Plugins
In reply to: [Geotag] Geotag and iPhone PhotosHmm, besides that it seems that the coordinates won’t be read properly…the plugin says that the position ist 98.833333333333, -154.33333333333 which should be wrong. I will check that…However, you should be sure that you display the original file and not a WordPress generated thumbnail…
Forum: Plugins
In reply to: [Geotag] [Plugin: Geotag] Delete marker when quick editForum: Plugins
In reply to: [Geotag] [Plugin: Geotag] Lost my markersThe WP autosave might be a problem, I will check that. I never tested QuickEdit, but it could be that this will also delete the metadata. That’s a little bit annoying as the plugin only uses the functions provided by WordPress and doesn’t handle the storage process itself. I will check on that…
Forum: Plugins
In reply to: [Geotag] Geotag and iPhone PhotosPlease make sure, that your <img>-tag in your posts displays the original photo and not a WordPress generated thumbnail as WordPress might remove the exif data while resizing the pictures.
Forum: Plugins
In reply to: [Geotag] [Plugin: Geotag] upgrade to v2@travelwithamate:
Have a look over here http://wordpress.org/support/topic/using-geotag-with-themes.@oppylock:
This is neither a feature nor a bug. It’s just the way WordPress handles the shortcodes…the Geotag shortcode can’t ‘see’ the output of the gallery shortcode.
To read the geotags from all of the photos once and save it to the database might be a solution. I always avoided this way because I doesn’t like the media library at all and because I’m not sure how to properly update the database in case the position or the picture has changed. On the other hand, using the database might speed up the reading process, especially if you have lots of photos. I will think about that, but this will cause some work and will be something for a new version :-).Forum: Plugins
In reply to: [Geotag] Geotagging categorys and tags@le soleil:
Of course, you can modify the plugin as you like. Have a look at (approx.) line 2048 and 2065 where$markers[$i]['content']is defined. The content of this variable will be used as the content of the infowindow for posts (2048) and for photos (2065).Forum: Plugins
In reply to: [Geotag] Using Geotag with ThemesHi,
to display a simple map with all of your geotagged posts you can try the following code:if (class_exists('Geotag')) { $options = array( 'width' => '100%', 'height' => '400px', 'visible' => true, 'marker_query' => 'numberposts=-1', 'readexiftags' => true, 'init_on_pageload' => true ); Geotag::the_geotag('print_map', $options); }Forum: Plugins
In reply to: [Geotag] [Plugin: Geotag] upgrade to v2@oppylock:
Well, just to be sure, I guess you enabled the “read exif tag” option. If so, it depends how you insert your images into your post. Basically, the plugin looks for image tags <img src=’…’> and extracts the URL. If you insert your gallery with a shortcode (something like[gallery]), only the shortcode will be saved with your post and when loading your page it will be replaced on the fly with the proper HTML code. That might be why the Geotag plugin only ‘sees’ the[gallery]shortcode and cannot extract a URL. Perhaps you can try to insert one of these pictures manually and see if its working.I’m afraid that fixing this wouldn’t be easy…but if I find something I will post it over here…
Forum: Plugins
In reply to: [Geotag] [Plugin: Geotag] upgrade to v2@herrpedro:
Well, I think I might need a liitle bit help on that. So you mean that coordinates are missing execpt for posts with status ‘publish’ and ‘future’? In other words coordinates are missing for all ‘auto-draft’ posts?Forum: Plugins
In reply to: [Geotag] [Plugin: Geotag] upgrade to v2@oppylock:
The exif is always read from the original jpg or tiff files. Maybe you can give me a link to a sample post and I will have a look…Forum: Plugins
In reply to: [Geotag] [Plugin: Geotag] upgrade to v2@roddan:
I think the bug might be fixed now. Please try to download the version 2.0 once again and replace thegeotag.phpfile with the new one – I’m curious 🙂