Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Forked from g-maclean/snippet.php
Created January 29, 2025 13:21
Show Gist options
  • Save propertyhive/3b8b62d8b21f87fb2243b0f53a9de28b to your computer and use it in GitHub Desktop.
Save propertyhive/3b8b62d8b21f87fb2243b0f53a9de28b to your computer and use it in GitHub Desktop.
PropertyHive - Reapit force use standard ID instead of alternateID
add_action( "propertyhive_property_imported_reapit_foundations_json", 'force_main_id_import', 10, 2 );
function force_main_id_import( $post_id, $property )
{
if ( isset($property['id']) && !empty($property['id']) )
{
update_post_meta( $post_id, '_reference_number', $property['id'] );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment