12/05/2016 at 2:51 pm
#402276
Keymaster
@ Jason
I’ve played with this a bit more… the correct snippet to remove geocoding addresses is this:
add_action( 'admin_init', 'cn_remove_geocode', 11 );
function cn_remove_geocode() {
remove_filter( 'cn_set_address', array( 'cnEntry_Action', 'geoCode' ) );
}
In testing on Bluehost (a business cloud account) bulk geocoding addresses causes issues. My best guess is that Bluehost is limiting external connections. Perhaps to prevent their hosting services from being used for denial of service attacks. I dunno, just speculation but I wanted to follow up with you in case it helps you out too.
