Support

Account

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

  • Hi @jusseb

    The function get_sub_field will not work within your custom $wpdb->get_results loop. It only work inside a have_rows or has_sub_field loop while loop.

    Perhaps the data already exists inside $row?

    Try debugging it like so:

    
    <?php echo '<pre>';
    	print_r($row);
    echo '</pre>';
    die; ?>
    

    Thanks
    E