is this using single location page? e.g. you can used placeholder #_LOCATIONNEXTEVENT
http://wp-events-plugin.com/documentation/placeholders/
thanks for the replay… actually i want like:
I have 4 location… Location A, location B, location C, Location D
Now i want to show only Location A events.
right now my code is [events_list scope=”today”]#_EVENTLINK
#_EVENTTIMES
[/events_list]
i want to show it like this but need to show only selected location Event.
i can get selected location by $current_location; but dont know how can i use this
some more Info:
http://example.com/?site-location=Location A
will show only Location A Event
http://example.com/?site-location=Location B
will show only Location B Event
Any Way to do this?
you can try something like
echo do_shortcode('[events_list limit="10" location="'.$current_location.'"]#_EVENTLINK #_EVENTTIMES[/events_list]');
if you are using templates.