Created
September 24, 2025 10:25
-
-
Save propertyhive/c893b9997380bfdebd115f17a80294a9 to your computer and use it in GitHub Desktop.
Disable import failsafe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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