+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 12

Thread: Snippet help

  1. #1
    Join Date
    Aug 2007
    Location
    San Diego, Ca
    Posts
    950

    Default Snippet help

    Aaron,

    What is the snippet code to separate from Single Family Homes(Detached) and Condo/Townhomes (Attached)?

    If I want to do a Foreclosure snippet to search for words like Bank Owned, Foreclosure, REO, etc. in the Description, what is the code for it?

    One more, if I want a snippet to be for all cities, how do I do that? (Ex. for the Foreclosure snippet I want to do)

    Please let me know. Thanks.
    Paul Caparas
    Broker Associate, Realtor
    Weichert Realtors Elite

    San Diego Homes For Sale
    Scripps Ranch Real Estate
    Mira Mesa Real Estate

  2. #2

    Default Re: Snippet help

    Paul,
    I am wanting to do the exact same thing.
    Display foreclosures. I have also been using 1PP but am so disappointed with their lack of any type customer service. My site has not worked since we upgraded our MLS 2 months ago. They just don't care. Steve Hundley won't take my calls.
    Anyways, I have been building foreclosure searches by pulling them form the MLS and manually building the list with the MLS #'s.
    Having a snippet built that searches the remarks sounds like a real good solution.
    Did I meet you or your partner at REO mac last spring?
    Are you going to San Antonio next month?

    Adam Robinson, Owner
    Weichert Realtors On the Key
    www.SarasotaForeclosures.com
    www.SarasotaNLS.com
    www.SiestaKeyRealEstate.com



    Adam Robinson, Owner - Weichert Realtors On the Key -

  3. #3
    Aaron is online now Real Estate Webmasters Staff Aaron's Most Recent Blog Entry: Email etiquette Aaron is on a distinguished road
    Join Date
    Jun 2005
    Location
    Nanaimo
    Posts
    24,278

    Default Re: Snippet help

    Quote Originally Posted by papaul1621 View Post
    Aaron,

    What is the snippet code to separate from Single Family Homes(Detached) and Condo/Townhomes (Attached)?
    You should be able to set the "idx" variable - you can only set one of these per snippet - here is the code to use:
    $_REQUEST['idx'] = "townhouseorcondo";
    or
    $_REQUEST['idx'] = "single-family";

    Quote Originally Posted by papaul1621 View Post
    If I want to do a Foreclosure snippet to search for words like Bank Owned, Foreclosure, REO, etc. in the Description, what is the code for it?
    Let me get back to you on this one - I don't think this would be set up by default - I know you have an existing work order to change the cities to zip codes - so I'll slip it into that project. Sandicor may even have a field that you can use to determine if the listing is a Foreclosure.

    Quote Originally Posted by papaul1621 View Post
    One more, if I want a snippet to be for all cities, how do I do that? (Ex. for the Foreclosure snippet I want to do)
    You can remove line of code that calls the city:

    $_REQUEST['search_city'][] = 'poway';

    Or you can "comment out" the line by adding 2 slashes // so it ends up looking like:
    //$_REQUEST['search_city'][] = 'poway';
    Aaron
    Real Estate Webmasters ( Programming )
    Client Resources | Tutorials | Suggested Enhancements

  4. #4
    Aaron is online now Real Estate Webmasters Staff Aaron's Most Recent Blog Entry: Email etiquette Aaron is on a distinguished road
    Join Date
    Jun 2005
    Location
    Nanaimo
    Posts
    24,278

    Default Re: Snippet help

    @Adam - Welcome to the Real Estate Webmasters Forum.
    Aaron
    Real Estate Webmasters ( Programming )
    Client Resources | Tutorials | Suggested Enhancements

  5. #5
    Join Date
    Aug 2007
    Location
    San Diego, Ca
    Posts
    950

    Default Re: Snippet help

    Quote Originally Posted by Aaron View Post


    Let me get back to you on this one - I don't think this would be set up by default - I know you have an existing work order to change the cities to zip codes - so I'll slip it into that project. Sandicor may even have a field that you can use to determine if the listing is a Foreclosure.

    Thanks Aaron, that would be great if you can have it done in one project. Also for Sandicor, our way to search for Foreclosures is to do a search in the field of REMARKS for keywords like Bank Owned, Foreclosure, REO etc... So if it is not done by default, I would like it have. I know you have other clients with Sandicor that have a Foreclosure snippet, maybe check to see the way they did it.

    Also I do have another work order to have the phone number required to sign up on my IDX, so if you can add it to my project, that would be great.

    By the way, its Saturday, go home and relax...
    Paul Caparas
    Broker Associate, Realtor
    Weichert Realtors Elite

    San Diego Homes For Sale
    Scripps Ranch Real Estate
    Mira Mesa Real Estate

  6. #6
    Join Date
    Aug 2007
    Location
    San Diego, Ca
    Posts
    950

    Default Re: Snippet help

    Aaron,

    Got a quick question, for a snippet, how can have it show the list of home priced from the Highest to Lowest, not Lowest to Highest?
    Paul Caparas
    Broker Associate, Realtor
    Weichert Realtors Elite

    San Diego Homes For Sale
    Scripps Ranch Real Estate
    Mira Mesa Real Estate

  7. #7
    Join Date
    Aug 2007
    Location
    San Diego, Ca
    Posts
    950

    Default Re: Snippet help

    Aaron,

    Another question, you know how a snippet shows different price ranges that people can click, well there are some areas in San Diego that have a lot of homes well over $1,000,000 with not much homes less than that. So how can I change the way the price ranges that come up?
    Paul Caparas
    Broker Associate, Realtor
    Weichert Realtors Elite

    San Diego Homes For Sale
    Scripps Ranch Real Estate
    Mira Mesa Real Estate

  8. #8
    Aaron is online now Real Estate Webmasters Staff Aaron's Most Recent Blog Entry: Email etiquette Aaron is on a distinguished road
    Join Date
    Jun 2005
    Location
    Nanaimo
    Posts
    24,278

    Default Re: Snippet help

    Quote Originally Posted by papaul1621 View Post
    Aaron,

    Got a quick question, for a snippet, how can have it show the list of home priced from the Highest to Lowest, not Lowest to Highest?
    This should work:

    $_REQUEST['sort'] = "ASC"; // Lowest to highest
    or
    $_REQUEST['sort'] = "DESC"; // highest to Lowest
    Aaron
    Real Estate Webmasters ( Programming )
    Client Resources | Tutorials | Suggested Enhancements

  9. #9
    Aaron is online now Real Estate Webmasters Staff Aaron's Most Recent Blog Entry: Email etiquette Aaron is on a distinguished road
    Join Date
    Jun 2005
    Location
    Nanaimo
    Posts
    24,278

    Default Re: Snippet help

    Quote Originally Posted by papaul1621 View Post
    Aaron,

    Another question, you know how a snippet shows different price ranges that people can click, well there are some areas in San Diego that have a lot of homes well over $1,000,000 with not much homes less than that. So how can I change the way the price ranges that come up?
    Here is a thread that answers that http://www.realestatewebmasters.com/thread28611.html

    Thank you,
    Aaron
    Real Estate Webmasters ( Programming )
    Client Resources | Tutorials | Suggested Enhancements

  10. #10
    Join Date
    Aug 2007
    Location
    San Diego, Ca
    Posts
    950

    Default Re: Snippet help

    Thanks Aaron, what about the Foreclosure snippet?
    Paul Caparas
    Broker Associate, Realtor
    Weichert Realtors Elite

    San Diego Homes For Sale
    Scripps Ranch Real Estate
    Mira Mesa Real Estate

+ Reply to Thread
Page 1 of 2 1 2 LastLast

Similar Threads

  1. snippet help please
    By GreggRio in forum REW IDX
    Replies: 24
    Last Post: 07-07-2008, 10:11 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts