Support

Account

Forum Replies Created

  • Not sure what the issue was. I nuked the page/post and dropped all my fields and reimported from jSon and it worked. I think something was stuck under the hood. I still don’t quite understand how/where the field options are stored 😀

  • I was out of comission due to some sickness. Apparently this was never seen by anyone. Ah well. I’ll plot along and see if I can figure it out.

  • I finally solved this.

    I made the mistake with the next repeater I wrote too.

    Here’s the code I HAD

    <?php if(have_rows('events_repeater')): the_row();?>
            
         <?php while(have_rows('events_repeater')): the_row();?>

    If you leave the_row off of BOTH of those lines you’ll get a page that loads garbage forever.

    If you have the_row ON BOTH of those, then the first item does not appear.

    You need it on only the “while”

    <?php if(have_rows('events_repeater')): ();?>
            
         <?php while(have_rows('events_repeater')): the_row();?>
  • I’m thankful for you taking the time to answer my question. I am not as proficent with PHP as I’d like to be. Would you mind sharing some code examples?

    I think if I understand you, the first time I loop: I don’t HAVE to display anything, I can just use this to get some of the values and assign them to variables?

    I still don’t know how to do this well IF I don’t even know how many items I might have.

    I DO know I want to try and target and captures each of the progress_subPercent from progress_subRepeater

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