+ Reply to Thread
Results 1 to 8 of 8

Thread: Snippet Formula for area's of Chicago not subarbs of Chicago

  1. #1
    Join Date
    Sep 2006
    Posts
    20

    Unhappy Snippet Formula for area's of Chicago not subarbs of Chicago

    I am kind of confused - I need area's inside of Chicago - Inside Chicago might have over 1.5 million units - its huge and is going to be the primary place for my landing pages - For example the West Loop (60607) which is were i live (might have 10,000 units) - which formula would i use:

    $_REQUEST['snippet_city'] = 'west-loop'; or $_REQUEST['snippet_zip'] = '60607';

    Here is the snippet that was given to me by Morgan for Chicago Area: (Zip Codes)



    <?php



    $_REQUEST['snippet'] = true;

    $_REQUEST['page_limit'] = 5;

    $_REQUEST['idx'] = 'attached-single-family';

    $_REQUEST['snippet_zip'] = '60607';


    include "idx/common.inc.php";

    include "idx/pages/snippet.php";



    ?>



    We have over 80 area's of Chicago some of which I all my business in - If we just use zip codes instead of city in the snippet then it works - but it searches for not the area but the zip code? Right? - No one will search by zip only -



    What is the formula that will allow people to search for homes within an area of Chicago - example West Loop (60607) by typing in West Loop and not 60607?



    http://www.bestbidrealty.com/west-lo...s-for-sale.php See how the page talks about the zip code - how do i get it to read the Chicago area which is the West Loop ?




    Please Help
    BestBid Realty.com

  2. #2
    Join Date
    Sep 2005
    Location
    D
    Posts
    1,177

    Default Re: Snippet Formula for area's of Chicago not subarbs of Chicago

    Harvey's problem is that the zip code snippet REW set up just doesn't work. Instead of returning properties for just the specified zip code, it returns properties from all zip codes. see:
    http://www.bestbidrealty.com/bucktow...s-for-sale.php

  3. #3
    Aaron is offline 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 Formula for area's of Chicago not subarbs of Chicago

    Hello,

    You would use:
    $_REQUEST['snippet_zip'] = '60607';

    Then to make the title say "West Loop" you would use:

    $_REQUEST['snippet_title'] = "West Loop";

    I've added that to the snippet (#search-chi-west-loop#) on this page:

    http://www.bestbidrealty.com/west-lo...s-for-sale.php


    Does that answer it?
    Aaron
    Real Estate Webmasters ( Programming )
    Client Resources | Tutorials | Suggested Enhancements

  4. #4
    Aaron is offline 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 Formula for area's of Chicago not subarbs of Chicago

    Quote Originally Posted by RonnieG View Post
    Harvey's problem is that the zip code snippet REW set up just doesn't work. Instead of returning properties for just the specified zip code, it returns properties from all zip codes. see:
    http://www.bestbidrealty.com/bucktow...s-for-sale.php
    Thanks for the heads up... I've corrected that issue and it's now using the Zip code in the query.

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

  5. #5
    Join Date
    Sep 2006
    Posts
    20

    Default Re: Snippet Formula for area's of Chicago not subarbs of Chicago

    Aaron - I still dont have an answer - Q. Am i going to get leads from consumers that type in West Loop or does the consumer need to type in the 60607 zip code? (typing into Google: (mls,condo,west loop) or do they need to type this into Google (mls,condo,60607) because no one types in zips and then i cant use that formula - Does this make sense?
    Harvey
    BestBid Realty.com

  6. #6
    Join Date
    Sep 2005
    Location
    D
    Posts
    1,177

    Default Re: Snippet Formula for area's of Chicago not subarbs of Chicago

    Harvey,
    Both. Consumers may enter the zip or community name, but the community name is predominant in the search page content, and the community name is also the only thing will have in your PPC campaigns, so nearly all leads will be from consumers entering the community name. How the search is actually built in the snippet doesn't matter.

  7. #7
    Join Date
    Sep 2006
    Posts
    20

    Default Re: Snippet Formula for area's of Chicago not subarbs of Chicago

    Aaron - I stumped Ronnie this time - Snippet zip code

    What if a Chicago community has more then one zip code then how do i write the formula - like this:

    $_REQUEST['snippet_zip'] = '60607' or '60606' or '60605';

    $_REQUEST['snippet_title'] = "West Loop – Zip 60605,60606,60607";
    BestBid Realty.com

  8. #8
    Aaron is offline 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 Formula for area's of Chicago not subarbs of Chicago

    You would do:

    $_REQUEST['snippet_zip'][] = "60607";
    $_REQUEST['snippet_zip'][] = "60606";
    $_REQUEST['snippet_zip'][] = "60605";

    $_REQUEST['snippet_title'] = "West Loop";

    Note the Square Brackets []
    The "snippet_title" is only used for the text that shows up on the page.
    Aaron
    Real Estate Webmasters ( Programming )
    Client Resources | Tutorials | Suggested Enhancements

+ Reply to Thread

Similar Threads

  1. Couple snippet questions
    By u2man in forum REW IDX
    Replies: 11
    Last Post: 01-21-2008, 10:12 PM
  2. "Chicago Real Estate" on Google
    By Deuce in forum Google
    Replies: 13
    Last Post: 04-27-2006, 09:37 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