Support

Account

Home Forums Add-ons Repeater Field How to get values from another page FIX Reply To: How to get values from another page FIX

  • The following example worked for me but stopped working if I replaced the variable with the page ID value directly.

    <?php $other_page=44; ?>
    
    <div class="tab-pane <?php the_field('active_tab_1', $other_page); ?>" id="<?php the_field('tab_title_1', $other_page); ?>">
    	<?php if( get_field('inducteerow_loop', $other_page) ): ?>
    		<?php while( has_sub_field('inducteerow_loop', $other_page) ): ?>
                    <div>HTML Content Goes Here</div>
    
    <?php endwhile; ?>
    <?php endif; ?>
    </div>

    Thank you for the reply.