Support

Account

Home Forums Add-ons Repeater Field Can't create array with repeater sub_field Reply To: Can't create array with repeater sub_field

  • Hi, I have tried this:

    $value = array();
    // later
    $value[] = get_sub_field('fee');
    print_r($value);

    but its still giving me this:
    Array ( [0] => 2500 ) Array ( [0] => 3000 ) Array ( [0] => 3500 ) Array ( [0] => 4000 )