Support

Account

Home Forums General Issues Image would not show in repeater Reply To: Image would not show in repeater

  • hi Elliot.

    we are trying to change it but still it wont work
    can you tell me how to change it?

    the php code is.

    <?php
    /*
    * Template Name: Onze scholen
    */
    ?>
    <?php get_header(); ?> 
    <div class="slider-divider"></div>
    <div class="wrapper">
    	<div class="content">
    		<div class="main-content">
    			<h1><?php the_title(); ?></h1>
    			
    				<ul>
    <?php if(get_field('scholen')): ?>
     
    	<ul>
     
    	<?php while(has_sub_field('scholen')): ?>
    		<li><img src="<?php the_sub_field('school-afbeelding'); ?>" width="200"; alt="" />
    					<?php the_sub_field('school-naam'); ?></li>
     
    	<?php endwhile; ?>
     
    	</ul>
     
    <?php endif; ?>
    	
    			</div>
    		</div>
    	</div>
    </div>
    <?php get_footer(); ?>