Stephen S
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Geo] WP 3.8 /WP Geo 3.3.3 not respecting controls prefI have been on API v3 since the beginning. I will try downloading the dev version to see if that helps, thanks.
Forum: Plugins
In reply to: [WP Geo] Zoom level not respected on widget or from postOk, I solved the problem thanks. It was on my end. I found that in my custom template there was something I had written to address zooming in the previous version that was affecting the new one. Once I removed it, all was working as it should. Thanks again, great plugin!
Forum: Plugins
In reply to: [WP Geo] Zoom level not respected on widget or from postI installed the latest version, but alas no zoom love. Same as before. Neither the widget nor a regular embed in either post or page work with the zoom level specified within the post control. Any ideas?
Forum: Plugins
In reply to: [FeedWordPress] Post not updating if custom field changesI solved this by writing my own function which compares titles and metadata and updates the DB, a royal pain in the ass. Hopefully the plugin will be updated one day to look at custom field changes.
Forum: Plugins
In reply to: [FeedWordPress] Post not updating if custom field changesOK, could anyone who is familiar with the code at least point me to the area where the update SQL is launched and I will try to fix this myself? I have been looking through the code but it is not at all obvious to me…
Thanks for any direction at all….
Forum: Plugins
In reply to: [FeedWordPress] Post not updating if custom field changesdoes no one else really have this problem?
Forum: Fixing WordPress
In reply to: GET /wp-admin/jquery-1.10.2.min.map 404 (Not Found)I just downloaded that file from the jQuery site (https://code.jquery.com/jquery-1.10.2.min.map) and installed it where it says it is missing and voila, no more errors. Not sure if this is upgrade proof, but for now it works to remove the error.
Forum: Plugins
In reply to: [WP Geo] min zoom on archive map?ok, after a little tinkering, I think I have solved it for me. Sadly it involves modifying the plugin file directly (/api/googlemapsv3/googlemapsv3.php):
FROM (on line 188):
if ( count( $map->points ) > 1 ) { echo $map->get_js_id() . '.fitBounds(bounds);'; }
TO:
if ( count( $map->points ) > 1 ) { echo $map->get_js_id() . '.fitBounds(bounds);'; echo 'var listener = google.maps.event.addListener('. $map->get_js_id() .', "idle", function() { if ('. $map->get_js_id() .'.getZoom() > 15) '. $map->get_js_id() .'.setZoom(10); google.maps.event.removeListener(listener);});'; }
but it works for me. Hope it helps someone else out there!
Forum: Plugins
In reply to: [WP Geo] min zoom on archive map?Well, I can add the option to the filter, but I can’t make the listener part work, and that is apparently necessary to get setZoom to work. ??
Forum: Plugins
In reply to: [WP Geo] min zoom on archive map?Thanks for the reply, I will try it and post my result here.
Forum: Plugins
In reply to: [FeedWordPress] Post not updating if custom field changespretty please???
Forum: Plugins
In reply to: [WP Geo] min zoom on archive map?anyone?
Forum: Plugins
In reply to: [FeedWordPress] Post not updating if custom field changesAnyone??
Forum: Plugins
In reply to: [Contact Form 7] wpcf7_add_shortcode broken in latest updatedouble UGH, this does NOT resolve the issue. The fatal error is STILL present, even after applying the suggested code change above.
Forum: Plugins
In reply to: [Contact Form 7] wpcf7_add_shortcode broken in latest updateugh, I just found the resolution in a post from a few days ago, sorry.
add_action( ‘init’, ‘xxxxx_wpcf7_add_shortcode’ );
function xxxxx_wpcf7_add_shortcode() {
wpcf7_add_shortcode(‘postdropdown’, ‘createbox’, true);
}