Support

Account

Forum Replies Created

  • Opps this was a line-height css issue! I just set

    .afc-map{
    line-height:normal;
    }

    & it worked. Worth a try if anyone else is having these display issues

  • Hi Elliot!

    Thanks for the reply!

    Yes your right, I had another go and it worked straight away! Must have been having an off day, spent a good hour trying to get it to work but must have missed something obvious (have deleted the code so not sure what I was doing wrong!)

    Working code here incase anyone else gets stuck!

    <?php
    
    				// check if the repeater field has rows of data
    				if( have_rows('repeater') ):
    				 
    				 	// loop through the rows of data
    				    while ( have_rows('repeater') ) : the_row();
    				 
    				        // display a sub field value
    
    				        $images = get_sub_field('gallery');
    
    						if( $images ): ?>
    
    						            <?php foreach( $images as $image ): ?>
    						                    <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
    						                </li>
    						            <?php endforeach; 
    						            endif;?>
    
    				 
    				   <?php endwhile;
    				 
    				else :
    				 
    				    // no rows found
    				 
    				endif;
    				 
    							?>
Viewing 2 posts - 1 through 2 (of 2 total)