Suppress missing coords warning when maps not active?
-
The events listing in the back-end has a triangular warning when Latitude and Longitude coordinates are blank, even when maps integration option is disabled. This is scary for users.
If line 4276 in eme_events.php had a third criteria “and maps are enabled,” this would not happen:
if (!$event['location_latitude'] && !$event['location_longitude']) {
could be updated to
if ((!$event['location_latitude'] && !$event['location_longitude']) && MAPS_ARE_ENABLED_VALUE_THAT_I_DONT_KNOW_HOW_TO_SUMMON) {
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Suppress missing coords warning when maps not active?’ is closed to new replies.