Support

Account

Home Forums General Issues How to turn custom fields into something I can insert into WYSIWYG editor? Reply To: How to turn custom fields into something I can insert into WYSIWYG editor?

  • Okay, it does indeed work with this plugin! Except for some reason my repeater plugin is saying that it’s not finding any rows. My loop starts like this

    <section class="grid-content">
    <div class="gridGallery">
    <?php
    // check if the repeater field has rows of data
    if( have_rows('card') ):
        // loop through the rows of data
        while ( have_rows('card') ) : the_row();

    And then I have this:

    else :
     ?> <p>no rows found</p> <?php
        // no rows found
    
    endif;

    And it seems that instead of pushing out all my gallery images it’s detecting zero rows and going to the else statement. I’m sure there’s an easy fix here I’m missing but I can’t catch it exactly…