Hello everyone,
I have been trying all day to have FlexSlider work with Advanced Custom Fields Pro. I got the slider to work, but the image will not display. Here is my code below, any help would be greatly appreciated.
<?php if( have_rows('banner') ): ?>
<div class="flexslider">
<ul class="slides">
<?php while( have_rows('banner') ): the_row();
$image = get_sub_field('slide');
$title = get_sub_field('title');
?>
<li><img />" alt="<?php echo $title;?>"></li>
<?php endwhile; ?>
</ul>
</div>
<?php endif; ?>