Support

Account

Home Forums Add-ons Repeater Field repeater field not returning data Reply To: repeater field not returning data

  • 6 month later and no one has fix for this.
    I have same problem, repeater returns only boolean value not an Array as it supposed to.
    One thing that I noticed if I don’t give a name to repeater field it DOES return an array, but I can’t select it because it’s identifier is [”] and php doesn’t want to read it.
    with name:

    ["address"]=>
      array(1) {
        ["list"]=>
        bool(false)
      }

    without name:

    ["address"]=>
      array(1) {
        [""]=>
        array(1) {
          [0]=>
          array(5) {
            ["type"]=>
            string(4) "Home"
            ["address"]=>
            string(23) "12324 SW MAIN ST"
            ["city"]=>
            string(10) "Beaverton "
            ["state"]=>
            string(2) "OR"
            ["zipcode"]=>
            string(5) "97007"
          }
        }
      }