Hi,
Thanks for your awesome plugin.
I've find an php error and fixed it
The error :
Notice: Undefined index: field_1 in /wp-content/plugins/bp-profile-search/bps-searchform.php
on #63 & #64
$_POST[$fname])) $posted = $_POST[$fname];
you must replaced it with :
if (isset($_POST[$fname])) $posted = $_POST[$fname];
(and so on for the others same lines type ...)
Regards,