Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created August 15, 2025 11:20
Show Gist options
  • Save propertyhive/3dbfe7363b73b72707ba92903e3d0326 to your computer and use it in GitHub Desktop.
Save propertyhive/3dbfe7363b73b72707ba92903e3d0326 to your computer and use it in GitHub Desktop.
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