Home › Forums › Front-end Issues › Trouble with Google Map › Reply To: Trouble with Google Map
My mistake.
I forgot to put a conditional statement to check if the $location is empty or not. So the working code is like this (if anybody is looking at multi marker application):
<?php
$posts = get_posts(array(
'posts_per_page' => -1,
'post_type' => array('museumobjects', 'encyclopaedia', 'mynhssubmissions')
));
if( $posts ): ?>
<div class="acf-map">
<?php foreach( $posts as $post ):
setup_postdata( $post );
$location = get_field('location_of_objects');
if(!empty($location)):
// first, get the image object returned by ACF
$imageN_object = get_field('objects_image');
// and the image size you want to return
$imageN_size = 'thumbnail';
// now, we'll exctract the image URL from $image_object
$imageN_url = $imageN_object['sizes'][$imageN_size];
// first, get the image object returned by ACF
$imageG_object = get_field('object_image');
// and the image size you want to return
$imageG_size = 'thumbnail';
// now, we'll exctract the image URL from $image_object
$imageG_url = $imageG_object['sizes'][$imageG_size];
?>
<div class="marker" data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>">
<div class="row">
<div class="small-12 columns brightness">
<div class="small-12 columns text-center">
<h4 class="walter"><a href="<?php the_permalink(); ?>"><?php the_title(); ?><?php echo get_field('the_title');?></a></h4>
</div>
<div class="medium-3 small-12 columns">
<?php
if(isset($imageN_object) || isset($imageG_object)) { ?>
<a href="<?php the_permalink(); ?>"><img src="<?php echo $imageN_url; ?>" /></a>
<a href="<?php the_permalink(); ?>"><img src="<?php echo $imageG_url; ?>" /></a> <?php
} else { ?>
<p class="text-center" style="margin-top: 40px; font-style: italic;">Image Unavailable</p><?php
}
?>
</div>
<div class="medium-9 small-12 columns">
<h5 class="address"><?php echo $location['address']; ?></h5>
<p> <?php echo wp_trim_words(get_field('object_description') , $num_words = 30, $more = '...'); ?>
<?php echo wp_trim_words(get_field('the_story') , $num_words = 30, $more = '...'); ?>
</p>
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php endforeach; ?>
</div>
<?php wp_reset_postdata(); ?>
<?php endif; ?>
note the addition:
if(!empty($location)):
that’s crucial.
cheers.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.