Hey there,
I am trying to search for all users that have a specific value in a specific custom field.
I guess my non-working code shows best what I am trying to do:
$userModel = new XenForo_Model_User();
$criteria = array(
'customFields' => array("my_custom_field" => "bunny"),
)...