Customizing property search using data attributes
Property search filter options can be customized directly in the embed code using HTML data-* attributes. Using data attributes is an alternative to the built-in RealtyVis dashboard controls. This approach allows you to quickly create multiple niche pages without creating multiple, separate embed codes.
RealtyVis allows you to inject data attributes in the embed code following the pattern data-<key>="<value>". When these parameters are present, RealtyVis can provide customized property searches specific for any particular niche page.
Data attributes
| Attribute | Type | Description |
|---|---|---|
data-location | String | County, city, region or community |
data-address | String | Street address |
data-postal-code | String | Postal code (6 character exact match or 3 character partial match) |
data-transaction-type | List | For sale, For rent, Sold, Rented |
data-category | String | Residential, Commercial |
data-types | List | House, Duplex, Townhouse, Condo, Multifamily, Farm, Land, Office, Retail, Business, Industrial, Hospitality, Institutional |
data-price-min | Number | Minimum listing or rental price |
data-price-max | Number | Maximum listing or rental price |
data-size-min | Number | Minimum living area in square feet |
data-size-max | Number | Maximum living area in square feet |
data-lot-min | Number | Minimum lot size in square feet |
data-lot-max | Number | Maximum lot size in square feet |
data-bed-min | Number | Minimum number of bedrooms |
data-bath-min | Number | Minimum number of bathrooms |
data-year-min | Number | Minimum year built |
data-year-max | Number | Maximum year built |
data-keywords | List | List of matching keywords, separated by commas. |
data-open-house | Boolean | Upcoming open house available. (true/false) |
data-virtual-tour | Boolean | Virtual tour available. (true/false) |
Example
Show condos and townhouses within Toronto greater than or equal to $1 million
<div data-rv-block="XXXXX-XXXXX"
data-location="Toronto"
data-types="Condo,Townhouse"
data-price-min="1000000"></div>