- Return searched paramater to template
Code: Select all
$sql_where .= ($speciality_one) ? ' AND (fd.pf_speciality_one ) OR (fd.pf_speciality_two )'. $db->sql_like_expression(str_replace('*', $db->any_char, ($speciality_one))) . ' ': '';
Code: Select all
$sql_where .= ($speciality_one) ? ' AND ((fd.pf_speciality_one ) OR (fd.pf_speciality_two ))'. $db->sql_like_expression(str_replace('*', $db->any_char, ($speciality_one))) . ' ': '';
Code: Select all
$sql_where .= ($speciality_one) ? ' AND ((( fd.pf_speciality_one )'. $db->sql_like_expression(str_replace('*', $db->any_char, ($speciality_one))) . ' '.') OR (( fd.pf_speciality_two )'. $db->sql_like_expression(str_replace('*', $db->any_char, ($speciality_one))) . ')'.'OR (( fd.pf_speciality_three )'. $db->sql_like_expression(str_replace('*', $db->any_char, ($speciality_one))) . ')'.') ': '';
Yes, works fine with 3.0.9master412160 wrote:this mod works with 3.0.9?
Yes.Tobias Claren wrote:Is it possible to search also via "drop boxes"?
No.Tobias Claren wrote:Is it possible to get the memberposts (instead of members) as a result?
You can!Tobias Claren wrote:You should be able to find posts on a narrowing of the search profile data of the members.
E.G. only male carpenters from Berlin with a red car .