Support

Account

Home Forums Add-ons Repeater Field FlexSlider not displaying images

Unread

FlexSlider not displaying images

  • 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; ?>
    
Viewing 1 post (of 1 total)

You must be logged in to reply to this topic.