Support

Account

Home Forums Add-ons Options Page IDXpress Listings Pages Not Showing Fields Reply To: IDXpress Listings Pages Not Showing Fields

  • Yes. Just added “Text”. See below.

    <?php if (have_rows('second_buttons','option')):
      while (have_rows('second_buttons','option')): the_row(); ?>
      <div class="button-icons">
    <a href="<?php the_sub_field('button_link','option'); ?>"><div class="icon-circle"><?php the_sub_field('button_icon','option'); ?></div>
      <div class="2ndnav_text">
      <span><?php the_sub_field('intro_title','option'); ?></span>
    <h4><?php the_sub_field('button_title','option');?></h4>
    </div>
    </a>
    </div>
    <?php endwhile;
    endif; ?>
    TEXT

    That rendered where the second nav should be just fine…and this is on the listing page. It seems that the page isn’t reading the option repeater….but on every other post, page it does. I don’t get it.