Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created September 24, 2025 10:25
Show Gist options
  • Save propertyhive/c893b9997380bfdebd115f17a80294a9 to your computer and use it in GitHub Desktop.
Save propertyhive/c893b9997380bfdebd115f17a80294a9 to your computer and use it in GitHub Desktop.
Disable import failsafe
add_filter( 'propertyhive_property_import_stop_if_no_properties', 'disable_import_failsafe', 10, 2 );
function disable_import_failsafe( $disable, $import_id )
{
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment