TangibleInc / template-system

A template system for WordPress with content type loops and conditions
https://docs.loopsandlogic.com/reference/template-system/
6 stars 2 forks source link

ACF repeater field broken in 4.1.0 #91

Closed BenTangible closed 6 months ago

BenTangible commented 6 months ago

There may be more going on, but as far as I can see (and based on this forum user's issue), the ACF repeater field type is simply broken when updating to 4.1.0. I have the following content and template:

image

<ul>
  <Loop acf_repeater="repeater_field">
    <li><Field repeater_text /></li>
  </Loop>
</ul>

In 4.0.2 this outputs

  • Content in the first row
  • Second row of the repeater
  • Third row

However after updating to 4.1.0, the repeater loop simply outputs nothing.

Edit: content around the Loop still renders, so to clarify, this template doesn't output "nothing", it renders an empty <ul> </ul>.