Support

Account

Home Forums Front-end Issues beginner question (acf dont show on frontpage) Reply To: beginner question (acf dont show on frontpage)

  • Hi @royroy2

    The repeater loop needs to be called within the main loop have_posts() that you have on the page. Within here:

    <?php
                                // TO SHOW THE PAGE CONTENTS
                                    while ( have_posts() ) : the_post(); ?> <!--Because the_content() works only inside a WP Loop -->
                                        <div class="entry-content-page">
                                            <?php the_content(); ?> <!-- Page Content -->
                                        </div><!-- .entry-content-page -->
    
                                    <?php
                                endwhile; //resetting the page loop
                                wp_reset_query(); //resetting the page query
                                ?>