This method shows you how to adjust a filter to exclude properties based on a value you don't want.
For example, if you wanted your clients to see all properties but NOT "short sales".
Currently this method requires manual adjustment of the code that is generated, as this capability has not been added in to the various Wizards.
Overview
First, you need to know the name and value of the field you want to use.
The easiest way to do this is to create a LINK or DISPLAY WIDGET from the Buying Buddy dashboard.
Then select "Display Properties with Widgets" or "Create a custom Search Link" to start using the Wizard.
When you see the code snippet at the end, then you can start to make adjustments.
Identify the field
Lets assume we want to EXCLUDE "short sales".
So, create a Custom Search Link which specified this value - and the code looks like this:
https://charliesmithrealty.net/listing-results.php?filter=mls_id:denver+financing:short
In here you can see financing:short is specified - and this block will ensure that short sales are shown
Make the field "_not"
To make the filter EXCLUDE that value, then all that's needed is to append "_not" to the label, like this
https://charliesmithrealty.net/listing-results.php?filter=mls_id:denver+financing_not:short
Combing "include" and "exclude"
If a field has multiple values and you want to include some, and exclude others, then you may add both field names to to the filter.
For example, this filter includes HUD but excludes SHORT SALES.
financing:hud+financing_not:short
Summary
The approach of appending "_not" to a field name can be used with most MLS fields.
REMEMBER! Discover the right values and field names by using the Widget Wizards in your Buying Buddy dashboard.