Support

Account

Home Forums Add-ons Gallery Field Gallery Slider – no animations ?? Reply To: Gallery Slider – no animations ??

  • Gallery code on the individual page (http://www.bbh-design.com/portfolio/wakemed-garner-healthplex) using the wooslider

    	<?php 
    	
    	$images = get_field('project_gallery');
    	
    	if( $images ): ?>
    	    <div class="flexslider">
    	        <ul class="slides">
    	            <?php foreach( $images as $image ): ?>
    	                <li>
    	                    <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
    	                </li>
    	            <?php endforeach; ?>
    	        </ul>
    	    </div>
    	<?php endif; ?>