Support

Account

Forum Replies Created

  • I agree that using a variable is definitely the better way to go but was perplexed by the fact that the variable worked but not the ID value as referenced in the documentation. Thank you for looking into this.

  • 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.

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