Results 1 to 6 of 6
  1. #1
    Join Date
    Aug 2009
    Location
    London
    Posts
    106
    Plugin Contributions
    0

    Default Is this possible? Search products by distance from a postcode

    Hi

    I need some guidance, how can i do following with help of zencart? or if it is possible at all in zencart?

    Let say project in question is selling cars, can i have option of
    1) Seller creating there acounts, adding images of car they are selling and descriptionand option to edit add and advert expires after certain days

    2) Customer searching for cars can search through postcode distance/price range/ key word or manufacturer etc

    example is similar features like autotrader, though i am not planning to build site for cars but just to give example.

    Or if this is not possible with zencart, can some one suggest any other platform please?

    Regards

  2. #2
    Join Date
    Jul 2006
    Location
    SF Bay Area
    Posts
    867
    Plugin Contributions
    1

    Default Re: Is this possible with Zencart? Search products by distance from a postcode

    Put on your programming hat and grab one of the free zipcode databases that includes lat-lon data and then use something like:

    Code:
    function getDistance($latitude1, $longitude1, $latitude2, $longitude2, $unit = 'Mi') {
        $theta = $longitude1 - $longitude2;
        $distance = (sin(deg2rad($latitude1)) * sin(deg2rad($latitude2))) +
        (cos(deg2rad($latitude1)) * cos(deg2rad($latitude2)) *
        cos(deg2rad($theta)));
        $distance = acos($distance);
        $distance = rad2deg($distance);
        $distance = $distance * 60 * 1.1515;
        switch($unit)
            {
            case 'Mi': break;
            case 'Km' : $distance = $distance * 1.609344;
            }
        return (round($distance,2));
    to calculate the distance between two geodetic points.

  3. #3
    Join Date
    Aug 2009
    Location
    London
    Posts
    106
    Plugin Contributions
    0

    Default Re: Is this possible? Search products by distance from a postcode

    Thanks for guidance , can some one help me iwth point please?
    "1) Seller creating there accounts, adding images of car they are selling and description and option to edit add and advert expires after certain days"

    Regards

  4. #4
    Join Date
    Jun 2003
    Posts
    33,715
    Plugin Contributions
    0

    Default Re: Is this possible? Search products by distance from a postcode

    What you are describing is a "classified ads" program, not a shopping cart.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  5. #5
    Join Date
    Aug 2009
    Location
    London
    Posts
    106
    Plugin Contributions
    0

    Default Re: Is this possible? Search products by distance from a postcode

    perhaps your are right Kim, can suggest any platform i can use to build such project or any starting point to develop skills in this area?

    Regards

  6. #6
    Join Date
    Jun 2003
    Posts
    33,715
    Plugin Contributions
    0

    Default Re: Is this possible? Search products by distance from a postcode

    I do not have any direct experience with a classifieds program, I would suggest a Google search search.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

 

 

Similar Threads

  1. v151 Is it possible to Keep select products out of the product search?
    By Tadj Hemingway in forum Customization from the Admin
    Replies: 1
    Last Post: 28 Jan 2016, 11:27 PM
  2. v151 Need help fixing this sidebox search code from 'double submitting' the search.
    By jeffmic in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 28 Jul 2013, 01:54 AM
  3. Shipping cost based on distance from ZIP code?
    By Deno in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 13 Mar 2011, 05:53 AM
  4. distance between featured products in main page
    By alexdog1805 in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 8 Mar 2011, 08:01 PM
  5. Search Category - Is this possible?
    By chrisroge in forum Setting Up Categories, Products, Attributes
    Replies: 11
    Last Post: 11 May 2009, 02:47 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR