Support

Account

Home Forums ACF PRO Image not displaying Reply To: Image not displaying

  • I’m having the same issue, where the image is not displaying when adding the code into a hooks field in Dynamik Website Builder for Genesis.

    The code I’m using is…

    <div id="eline-home-slider" class="clearfix"> 
    <div class="eline-home-slider-inner">
    <?php $image = wp_get_attachment_image_src(get_field('slider_image'), 'full'); ?>
    <img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
    </div>
    </div>

    Any thoughts or suggestions?