Custom fields problem with google map
Firstly i don't need location fields (street, city..) in "add new" form. I removed them and inserted custom location fields in registration form. I want to get ad location from custom fields created by ACF plugin e.g. user_street, user_city...
I changed in sidebar-gmap.php cp_street with user_street, but unfortunately google map not displaying location from custom user_street field
Code:
$make_address = get_post_meta($post->ID, 'user_street', true) . ' ' . get_post_meta($post->ID, 'user_city', true) . ' ' . get_post_meta($post->ID, 'cp_state', true) . ' ' . get_post_meta($post->ID, 'cp_zipcode', true);