- This topic has 19 replies, 2 voices, and was last updated 13 years, 10 months ago by .
Viewing 20 posts - 1 through 20 (of 20 total)
Viewing 20 posts - 1 through 20 (of 20 total)
- The forum ‘Generic’ is closed to new topics and replies.
Events Made Easy › Forums › Generic › add feature that centers the map on the location of visitors (using their IP)
this feature would be very usefull
so users don’t have to zoom in the map and look for their location
This needs an API key to be implemented, and I just got rid of the API key some time ago, so this won’t happen for now.
thanks for your response
why did you get rid of the API key
Is there a solution to automotically rank events by town?
The API key was needed for google maps API v2, not v3. So it wasn’t needed anymore.
In the next version you can specify location ID’s as a paramter to filter when using the [events_list] shortcode
great thanks a lot
visitors can specify their location ID or only admin can do that?
Only the admin, but in the trunk version there’s a new shortcode that shows a list of locations and using some jquery and the shortcode [events_calendar] on the same page, people can click on a location and the calendar will only show the events for that location.
this is already posible using nexeventslink in a location
will this be posible for a city?
Never for a city, only for locations
I am facing the problem that I have too many events showing on the map, I have to find a way to show only the information that the users will need…
well, I can add a WP filter to the locations list, so you can then code up (in your theme’s functions.php) what you want to show based on any info you want.
It would be very useful if I could show locations by cities it would be great
Added filters in trunk:
eme_location_filter (1 parameter: $location array)
eme_location_list_filter (1 parameter: array of locations)
For usage: use “add_filter” in your functions.php.
See http://www.e-dynamics.be/bbpress/topic.php?id=389#post-1984
Read up on http://codex.wordpress.org/Function_Reference/add_filter and http://codex.wordpress.org/Function_Reference/add_action (the add_action has better examples)
ok all i have to do is put add_filter in functions.php
that is to say this code
add_filter(’eme_event_filter’,’do_my_filtering’);
function do_my_filtering($event) {
….
return $event;
what shoul I insert inside function do_my_filtering?
thanks,
put in a “print_r($event);” for starters, and go from there
Actually I never coded do you thing I can do it without knowing how to code
Nope …
ok so I just have to wait for new features 🙂
yup 🙂
ok