I managed to find the solution:
From wp-content/plugins/buddypress-compliments/includes/bp-compliments-settings.php
From line 176 you find this:
// Get the settings slug
$settings_slug = bp_get_settings_slug();
bp_core_new_subnav_item(array(
‘name’ => __(‘Memories’, ‘bp-compliments’),
‘slug’ => ‘memories’,
‘parent_url’ => trailingslashit($user_domain . $settings_slug),
‘parent_slug’ => $settings_slug,
‘screen_function’ => ‘bp_comp_settings_submenu_page_content’,
‘position’ => 20,
‘user_has_access’ => bp_core_can_edit_settings()
));
}
}`