Created
August 15, 2025 11:20
-
-
Save propertyhive/3dbfe7363b73b72707ba92903e3d0326 to your computer and use it in GitHub Desktop.
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_reapit_foundations_json_properties_requests', 'remove_sales_from_foundations_requests' ); | |
| function remove_sales_from_foundations_requests( $requests ) | |
| { | |
| unset($requests['sales']); | |
| return $requests; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment