I want to add some pages for several cities that will just pull up foreclosures and short sale properties. Our MLS lets us do this so I assume I need to add a code stating "foreclosure" and "short sale" - where in the snippet code do I add that and what do I type in? Thanks - here is my "normal" city code snippet.
<?php
/* ## RMLS-MN IDX Search Snippet
*/
## See http://www.derrickmonroe.com/rew-rmls-mn-city-codes.php
$_REQUEST['snippet_city'] = '170';
//$_REQUEST['minimum_price'] = '';
$_REQUEST['maximum_price'] = '';
$_REQUEST['minimum_bedrooms'] = '';
$_REQUEST['minimum_bathrooms'] = '';
$_REQUEST['minimum_sqft'] = '';
$_REQUEST['minimum_acres'] = '';
$_REQUEST['minimum_year'] = '';
## Search Types/Styles
## See http://www.derrickmonroe.com/rew-rml...tyle-codes.php
$_REQUEST['search_type'][] = 'ONEHF,TWOST,MRTTS,SPEBI,THRLS,FORLS,ONEST,MODTS';
$_REQUEST['idx'] = 'Listings';
$_REQUEST['page_limit'] = '4';
include $_SERVER['DOCUMENT_ROOT']."/idx/inc/php/pages/snippet.php";
?>

Reply With Quote
