Support

Account

Home Forums General Issues Display Values on my Page

Solving

Display Values on my Page

  • Hi Guys my name is Fotis and i am a junior web developer.

    The reason i need your help is because i am trying to create this gallery http://www.elliotcondon.com/creating-an-image-gallery-with-advanced-custom-fields/ and i am using custom fields and the add on repeater.

    But i can’t see anything on my browser and in my home page. Why this is happening ? what i am doing wrong?

    Please anyone who know to help me

    Thank you for reading my request!

  • here is my index.php code

    <?php
    
    get_header(); ?>
    
    <div id="content">
    <div id="main">
    
    	<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    	<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
    		<?php the_content(); ?>
    	<?php endwhile; else: endif; ?>
    
    	<?php query_posts('category_name='.get_the_title().'&post_status=publish,future');?>
    	<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    	<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
    	<p><?php the_content(); ?>
    	<?php endwhile; else: endif; ?>
    
    <!-- Slider -->
    <?php if(get_field('images')): ?>
    	<div id="slider">
    		<?php while(the_repeater_field('images')): ?>
    			<?php $image = wp_get_attachment_image_src(get_sub_field('image'), 'full'); ?>
    			<?php $thumb = wp_get_attachment_image_src(get_sub_field('image'), 'thumbnail'); ?>
    	    	<img src="<?php echo $image[0]; ?>" alt="<?php  the_sub_field('title');?>" rel="<?php echo $thumb[0]; ?>" />
    	    <?php endwhile; ?>
    	</div>
    	<?php endif; ?>
    </div>
    </div>
    		
  • Your code for displaying the data in the repeater field is outside of “The Loop”

    You either need to put the code inside the main loop or you need to specify the post id you want to get the custom data from, for an example of specifying the post id see the docs on any of the ACF functions that get or display field data, like this one: http://www.advancedcustomfields.com/resources/get_field/

Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘Display Values on my Page’ is closed to new replies.