Skip to content

Instantly share code, notes, and snippets.

@g-maclean
Created July 29, 2026 20:37
Show Gist options
  • Select an option

  • Save g-maclean/3e7c7db879d079d1bb082e204630befa to your computer and use it in GitHub Desktop.

Select an option

Save g-maclean/3e7c7db879d079d1bb082e204630befa to your computer and use it in GitHub Desktop.
Property Hive - Kyero Export - Change Type Options
add_filter('ph_kyero_feed_type_mapping_options', 'my_kyero_type_mapping', 10, 2);
function my_kyero_type_mapping($mapping, $custom_field) {
// Add a new property type
$mapping['bungalow'] = 'Bungalow';
// Change an existing mapping
$mapping['villa'] = 'Luxury Villa';
return $mapping;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment