Support

Account

Home Forums Front-end Issues Select field filter not working Reply To: Select field filter not working

  • Hi @jusseb

    No. The get_sub_field function can be used only within a have_rows or has_sub_field while loop. You have a custom loop, so you can’t use this function.

    Instead, you can find your value simply with this code:
    $value = $row->meta_value;

    Thanks
    E