Hi there,
I’m looking to replace the full venue address on the Map, List, and Month views with just the city and state.
I found a post from someone else saying you could get these values with something like this…
$venue_state = get_post_meta($post->ID, ‘_VenueStateProvince’, true );
$venue_city = get_post_meta($post->ID, ‘_VenueCity’, true );
…but I am getting empty variables when I do this in the loop. I’m comfortable with the templating, but would love a hint as to how to pull the city and state (abbreviated if possible) from an event’s venue information into a variable of some kind.