Hello
just to come back to my initial request, since you solved my birthdate display problem 😉
I wanted to match users by birthdate. I added the following code to sweetdate-child/functions.php but the matching score stats to “1”, what’s wrong ?
COPY CODE
add_action('after_setup_theme','kleo_my_match');
function kleo_my_match() {
global $kleo_config;
$kleo_config['matching_fields']['starting_score'] = 1;
$kleo_config['matching_fields']['single_value'] = array (
'Day of Birth' => 20,
'Month of Birth' => 30,
'Year of Birth' => 30,
'Country' => 10,
'City' => 10
);
}
Thanks !