Forum Replies Created
-
Author
-
January 10, 2019 at 21:03 in reply to: After filter members, it shows people who do not have memberships #216335oneder22ParticipantNot marked as solutionJanuary 10, 2019 at 20:37 in reply to: After filter members, it shows people who do not have memberships #216334oneder22ParticipantNot marked as solutiononeder22Participant
I discovered the problem was from the latest Paid Memberships Pro update (version 1.7.14). I rolled back to version 1.7.13.1 and the log out issue went away.
oneder22ParticipantHey Abe, thanks for the response. I’ve generated my code from the link you sent, but it’s still not functioning properly with multiple fields. Here’s my code in functions.php:
add_action(‘after_setup_theme’,’kleo_my_match’);
function kleo_my_match() {
global $kleo_config;
$kleo_config[‘matching_fields’][‘starting_score’] = 25;
$kleo_config[‘matching_fields’][‘sex_match’] = 0;
//single value fields like select, textbox,radio
$kleo_config[‘matching_fields’][‘single_value’] = array (
‘Country’ => 10,
‘State’ => 20,
‘City’ => 30,
‘Province’ => 20,
‘Other Interests’ => 5,
‘Relationship Status’ => 5,
‘Ethnicity’ => 5,
‘Religious Views’ => 5
);
//multiple values fields like multiple select or checkbox
$kleo_config[‘matching_fields’][‘multiple_values’] = array (
‘Interested In’ => 15,
‘Interests’ => 10,
‘Hobby/Hobbies’ => 30
);
}Do you see anything wrong with the code?
oneder22ParticipantI’m also seeing the same results as matbcn. The match score only increases if there is an identical match for checkboxes, multi-select and text boxes.
Is there a fix so the match score will increase even if it’s not an identical match for all multiple selections? Like matbcn said, changing the formula from AND to AND/OR would be perfect.
-
AuthorPosts