Classified Ads Module?

smuddy - May 31, 2005 - 15:15

Hello everybody, i'm looking for a Classified Ads Module where a User can add like a toy and another user can buy it!

Is there something like that already developed? If not i would like to pay for it, offers welcome!

I'll share your

iraszl - May 31, 2005 - 16:07

I'll share your expenses.
---
http://creativebits.org

classified ads module for Drupal 4.7 and Drupal 5 now available

grateful_drupal_user - February 23, 2007 - 05:48

Sorry for the delay. Finally got around to committing it to Drupal CVS and creating a project page:

http://drupal.org/project/ed_classified
http://exodusdev.com/drupal/modules/ed_classified.module

Michael Curry
Michael Curry - http://exodusdev.com

GREAT Module!

zucker - March 20, 2007 - 16:00

I put your module to work here: http://www.zuckerslist.com - I love it!

About

pamphile - March 20, 2007 - 20:37

About http://ZuckersList.com

that Sitepal Robot is soooo funny.

Business Letter

And much cuter than Craig on craigslist!

Walt Esquivel - March 20, 2007 - 23:45

Good job!

Walt Esquivel, MBA; MA; President, Wellness Corps; Captain, USMC (Veteran)
$50 Hosting Discount Helps Projects Needing Financing

Thank you!

zucker - March 30, 2007 - 21:08

Thanks Walt! Always nice to hear a positive comment!

Zucker

Would you like to share some insights?

pjek - October 7, 2007 - 18:12

I am trying to build a classifieds section for a website I am developing. I am a Drupal Newbie.

I decided to do this thing in drupal but I am totally confused by the taxonomy feature, especially in integrating it with the ed_classified module.

I have a few questions:

- how do you integrate the several categories you have on you site with the ed_classifieds module?
-how did you arrange for your "category" list to use radio buttons in stead of the standard drop down list?
-how do you list your sections/categories on your home page?

Help is pretty much appreciated

Patrick

Sorry I Didn't Respond Sooner

zucker - November 1, 2007 - 14:57

I hadn't been over here at drupal.org for quite sometime.

- how do you integrate the several categories you have on you site with the ed_classifieds module?
The categories are all taxonomy terms. Just go to Administer, Content Management, Categories. Create a vocabulary, then choose the content type 'Classified Ad' under 'Types' within the setup of the vocabulary. Then just add terms to your vocabulary. For instance at Zuckerslist.com, I have a vocabulary called 'Categories', and the terms within it are 'Arts and Crafts', 'Furniture', etc. I believe that the vocabulary 'Classified Ads' is automatically created when you install the Classified Ads module. Within that vocabulary, I have the terms 'For Sale', 'For Rent', 'Wanted', etc.

-how did you arrange for your "category" list to use radio buttons in stead of the standard drop down list?
Install the module 'options widgets' for CCK. And of course you need to install CCK also.

-how do you list your sections/categories on your home page?
I found the code for the front page here at Drupal.org. I'll copy it here since I don't remember where I found it. I'll try to give credit to the person once I find the link again....

Install the panels module. I'm using a 3 column panel.

At the top, I'm simply displaying the 'Latest Ads' block, which comes with the Classified Ads module.

To the left (By Category):

<?php
  $vid
= 5; /* <---- put correct vocabulary ID here */
 
$items = array();
 
$terms = taxonomy_get_tree($vid);
  foreach (
$terms as $term ) {
   
$count = taxonomy_term_count_nodes($term->tid);
    if (
$count) { /* don't show terms with 0 count */
     
$items[] = l($term->name,'taxonomy/term/'.$term->tid)." (".$count.")  ".$term->description;
    }
  }
/* end foreach */
 
print theme('item_list', $items);
?>

In the middle (By City):

<?php
  $vid
= 4; /* <---- put correct vocabulary ID here */
 
$items = array();
 
$terms = taxonomy_get_tree($vid);
  foreach (
$terms as $term ) {
   
$count = taxonomy_term_count_nodes($term->tid);
    if (
$count) { /* don't show terms with 0 count */
     
$items[] = l($term->name,'taxonomy/term/'.$term->tid)." (".$count.")  ".$term->description;
    }
  }
/* end foreach */
 
print theme('item_list', $items);
?>

To the right (By State):

<?php
  $vid
= 3; /* <---- put correct vocabulary ID here */
 
$items = array();
 
$terms = taxonomy_get_tree($vid);
  foreach (
$terms as $term ) {
   
$count = taxonomy_term_count_nodes($term->tid);
    if (
$count) { /* don't show terms with 0 count */
     
$items[] = l($term->name,'taxonomy/term/'.$term->tid)." (".$count.")  ".$term->description;
    }
  }
/* end foreach */
 
print theme('item_list', $items);
?>

Of course, your "$vid" will be the vocabulary ID on your site. They will be different than mine. You can see the code that is providing the counts toward the bottom.

Please let me know if you have any other questions.

Thank you very much!!

pjek - November 3, 2007 - 01:08

Of course I have been trying a few things while I was awaiting your answer, :), and I figured out it had to have something do do with taxonomies and CCK and panels, so I was making progress there, but your answer put all the pieces together. Thank you very much for taking your time in being so helpful. Especially with the code!!

You can post this project on

ydd - October 20, 2007 - 03:12

You can post this project on some outsource forum. Many developers from Indian and Chinese can do it and not expensive.

no one able to do that? :(

smuddy - June 2, 2005 - 07:50

no one able to do that? :(

I plan on making a simple

mattm - June 2, 2005 - 08:52

I plan on making a simple classifieds module this summer, perhaps some people could help me with it or vice-versa. I have some basics coded already and a few plans.

I need a classified module myself.

vikasbucha - September 24, 2005 - 20:16

I need one badly enough. The closest I could get is the directory module.

If you know of a project already going on pls let me know.

I'm ready to start work on a complete classifieds ad module. Something on the lines of
http://classifieds.phpoutsourcing.com/
Ideas Invited.

Need Too

KimaJako - June 16, 2006 - 10:02

Hi,

I realy want you to let me know you did it or not?

Regards
-----
www.PersiaData.com

+1 if any one is reading this

ghazlewood - June 2, 2005 - 17:51

I'll add to this and say that if anyone if looking for a little earner I would be interesed in a Classified Ads module too! We have a war chest that I'm sure we could crack open! :) Sounds like we could pool resources and keep a developer fed for while... I wish I had the time myself...

Maybe if you

terjeset - June 2, 2005 - 19:38

have a look at http://drupal.org/node/23670
you will find a similar project.

And maybe I'm into one myself. More to be said here later.

I know one, but

johnnybejohnny - June 2, 2005 - 21:55

it's not a module, so you can't use it in connection with drupal. You can find it at http://classifieds.phpoutsourcing.com/index.php. Lucky you, it's also open source, so maybe someone is able to port it over, lol. Hope it helps.

Seems like nobody wants our

smuddy - June 3, 2005 - 08:43

Seems like nobody wants our money ;)
C'mon people.

I am currently making a very

mattm - June 6, 2005 - 16:21

I am currently making a very basic classifieds module, only yet supporting paying by PayPal.

I am interested

harrial - July 22, 2008 - 20:08

When you are done with your module, let me know! I think this sounds better than the existing module.

Do we really need a

pamphile - June 6, 2005 - 16:57

Do we really need a classified module ? Maybe...

I am willing to fund this if all the best features of http://craigslist or http://usfreeads.com are added

### Especially anonymous email forwarding for advertisers ####

I am willing to contribute $200 if the same reverse bounty method is used as what we see here "Reverse bounty: securesite.module" http://drupal.org/node/20301 .

We could also enjoy classifed like functionality with the Flexinode. Some customization is required. Such as
Ecommerce module subscriptions for paying members
A new flexinode form field that lets anyone add a "Buy now !" link to paypal or another payment system

Marcel
http://01wholesale.com
http://01ftp.com

I would also contribute to

alvaroortiz - June 7, 2005 - 08:47

I would also contribute to the reverse bounty with a similar quantity.

álvaro

--
the cocktail
furilo.com

I think it'd be great

sciman - August 20, 2005 - 15:52

I think it would be great to allow members of a community to post items of interest to be categoriezed for response. I'm thinking of classified type postings, personals, volunteer opportunities seeking response, etc. I would love to figure out how to run a simple user-submits-ad site along the lines of http://craigslist or http://www.loquo.com/, and would be happy to contribute along with mpamphile. I don't need the e-commerce components so long as bidders or interested parties could make email contact with submitters. Posts would need to drop off on some sort of schedule. Any tips or developments in this or the related threads would be very helpful.

Steve
http://chapalaliving.net -- looking to be a community board in Mexico

Is there one yet?

cpzhao - October 27, 2005 - 07:25

I am looking for a similar module. Is there one available now?

Changpeng Zhao

A starting point

jsloan - June 7, 2005 - 13:43

I want to implement a classified section for our Intranet. I am looking at the AdEx DTD for a data model and exchange standard. A simple example of using AdEx is the implementation used by AdConnect

I guess the big decision is how to extend 'node' to support the data model. The taxonomy can handle the categories and the built in RSS and XML-RPC support can handle the data exchage. The E-Commerce modules can enable the purchasing functions.

Should it be through Flexinode?

All the pieces are already there...

instead of flexinode try CCK

reggie75 - July 12, 2006 - 10:15

Try the Content Construction Kit instead of Flexinode.
I read elsewhere that CCK is the more efficient way to create custom nodes.

Is anyone working on this...

llizards - November 9, 2005 - 13:04

Anyone still working on a classifieds module? I think this is the one major thing that drupal is lacking.

nope...Flexinode could fill

pamphile - November 10, 2005 - 05:10

nope...

Flexinode could fill the need partially.

I think Dublin Drupaller was working on a extension of Flexinode that allowed theming. That might interest you.

Lately, I've been thinking of a possible Post-Flexinode module that could creat totally different applications based on flexinode data. It would assign functions and actions to be performed on flexinode data types. It would work by piping data from flexinode data types into custom developed functions or modules, intead of just displaying data.

Just an idea...

Marcel
http://targetedpixels.com

Someone started a donorge project

drewish - November 13, 2005 - 09:49

not sure how serious they are about making it happen though...
http://donorge.org/d_items/view/171

+1

kae - January 24, 2006 - 01:40

I'm interested

FlexiMAX to the rescue

ixlr8 - January 24, 2006 - 06:34

Check out Fleximax, this might be able to help.

http://drupal.org/node/30376

Otherwise, I'm looking into what would be needed for this module. I've been real busy with work and grad school lately, so I'm not sure when I'll be able to work on it, but it doesn't seem TOO difficult. It's the hooks into drupal and cron that are the tough parts.

If any of you need something a bit faster, doing it in a series of pages with external style sheets would be the quick and dirty way, but it will work. If someone wants the quick and dirty way, before I can write a module, contact me, and I'm sure we can work something out.

Mike
http://www.ixlr8.org

I'm willing to make a

sodani - April 4, 2006 - 20:17

I'm willing to make a contribution as well!

done

kae - April 4, 2006 - 20:22

one's been written and will be committed soon.

announce here.
http://www.drupalecommerce.com/node/242

A better option?

Walt Esquivel - July 20, 2006 - 23:31

Your link leads to http://drupal.org/node/58263 which appears to be a revenue sharing model with Junxter.

However, doesn't http://drupal.org/node/62802#comment-118913 seem like a better option? No revenue sharing and pure Drupal. :)

I'd be interested in hearing from anyone that may have perhaps tried either or both classifieds models, the Junxter one and the pure Drupal one. A comparison would be nice, although thus far I believe the pure Drupal one is the better solution, particularly if you aren't looking to charge folks for posting ads. It appears Junxter requires a $0.10 minimum per ad reply.

Walt Esquivel, MBA; MA; President, Wellness Corps; Captain, USMC (Veteran)
$50 Hosting Discount Helps Projects Needing Financing

working on simple classifieds module

sangamreddi - June 5, 2006 - 07:16

I am working on simple classifieds module. basic module has been built.
Overview of the module: users with necessary permission can submit ads. basically the add's are of 4 types,
1. Free
2. Bold listing
3. Featured Listing and
4. Highlighted listing

Members need to purchase credits to post the bold, featured and highligthed listings. a mail will be sent to the owner of the add before the ad expires. Working for a client, hopefully in a day or 2 i'll show the demo.

Sunny                      
www.gleez.com | www.sandeepone.com

Details?

vincent - June 8, 2006 - 18:02

Hello - I am keen to try your module and maybe I can help in testing it. Can you outline your development timescale for this? If this is soon then I will use yours instead of the combination of views and flexinode as I have seen around here.
I would also like to know if you will have several categories such as:
1. Offers (people having something to sell)
1.1. Computers
1.2. TV
1.3. Books
2. Demand (people looking for something to buy)
1.1 Computers
1.2 TV
...

Thanks!

I'm very intrigued by this

StevenSokulski - June 8, 2006 - 21:58

I'm very intrigued by this feature and am in the earliest dev stages of a site that could make use of this functionality. We could actually include your module as part of our beta program to give it some mileage and report back to you on how it goes.

Please let me know how the module is coming along and if you are all interested in some testing. Be glad to help out in return for rights to use the module on one of my client's sites.

almost done

sangamreddi - June 8, 2006 - 23:36

Almost over, only theming left for the ads, by the end of tomorrow i'll show the demo. Thanks for your responses.

Sunny                      
www.gleez.com | www.sandeepone.com

Ads

vincent - June 12, 2006 - 14:10

Hello Sunny!
Any luck on that module?

yes its done

sangamreddi - June 14, 2006 - 18:01

Presently on localhost, i need to upload and show a demo. Busy with otehr project.. will be doing soon...

Sunny                      
www.gleez.com | www.sandeepone.com

cant wait to see it, sounds

jgavin - June 14, 2006 - 04:51

cant wait to see it, sounds awesome!

I am interested as well

johnchalekson - June 14, 2006 - 05:08

The only thing i have done was do a sample one using CCK and Views, and Taxonomy.
Its very low level, but I would be very interested in a module that can do this more efficiently.

test site: http://www.thingstoday.com/view/classified

Projects involved with:
American Local News - http://www.americanlocalnews.com
Hedgedfund.com - http://www.hedgedfund.com

Same here

vincent - June 14, 2006 - 15:17

Got something there as well:

www.francaisalondres.com/petitesannonces

It is in french!

-Vincent

Is this module finished

j0k3z - June 17, 2006 - 06:38

Is this module finished yet?

Id love to have a look.

herez teh demo link

sangamreddi - June 18, 2006 - 02:07

Hi all,

I finally uploaded it, can access here http://classifieds.gleez.com/

It has some rough edges and theming part left, awaiting clients response..

Sunny                      
www.gleez.com | www.sandeepone.com

looks cool

jgavin - June 18, 2006 - 02:27

looks cool

Thank you

sangamreddi - June 18, 2006 - 02:32

Sunny                      
www.gleez.com | www.sandeepone.com

good

KimaJako - June 18, 2006 - 04:29

Are your classifieds support text ads and image ads from client ?
-----
www.PersiaData.com

using additional modules

sangamreddi - June 18, 2006 - 05:31

Images can be added by simply using image module or tinymce module.

Sunny                      
www.gleez.com | www.sandeepone.com

Looking good! Will module work with organic groups?

Walt Esquivel - June 19, 2006 - 00:27

Hi Sunny,

Your work is looking really good! Will this module, when finished, work with the organic groups module so that each group could list their own classifieds independent of other groups?

Thank you,
Walt Esquivel, MBA, MA, Captain - U.S. Marine Corps (Veteran)
President, Wellness Corps, LLC
DreamHost Rewards Affiliate Program

well it should work

sangamreddi - June 19, 2006 - 08:30

I havent tested it, its just like a anotehr node type like story or page with more fields and permissions on posting. If other content type modules work with og, this should also work.

Sunny                      
www.gleez.com | www.sandeepone.com

Hi Sunny, Do you have any

cation555 - July 5, 2006 - 17:09

Hi Sunny,

Do you have any ida when your classifieds module will be uploaded? Will it be compatible with drupal 4.6.8?

Thanks

Did the client like it ?

pamphile - June 23, 2006 - 14:25

Did the client like it ?

buy

mwu - July 5, 2006 - 17:17

does it integrate with the ecommerce module to buy credits to post?

Take a look at...

Walt Esquivel - July 17, 2006 - 23:01

... http://groups.drupal.org/node/785

It discusses the Job Search, User Points, and E-Commerce modules which might help you. I don't see why you couldn't use the User Points and E-Commerce modules to charge in a similar way that I thought about using the Job Search module.

Please post back here as to whether or not you were able to solve your request and what you used to solve it, i.e., which modules you used and whether or not any custom code was needed. By doing so, others can learn from your experience and it will be much appreciated.

Thank you!

Walt Esquivel, MBA, MA, Captain - U.S. Marine Corps (Veteran)
President, Wellness Corps, LLC
DreamHost Rewards Affiliate Program

please look here

jgavin - August 10, 2006 - 21:23

classifieds in the works:

http://drupal.org/node/78071

Please cross-post to "Projects Needing Financing"

Walt Esquivel - August 10, 2006 - 22:19

Projects Needing Financing

Walt Esquivel, MBA; MA; President, Wellness Corps; Captain, USMC (Veteran)
$50 Hosting Discount Helps Projects Needing Financing

done

mwu - August 19, 2006 - 00:02

a few design ideas

hufferbomb - September 6, 2006 - 23:14

I do also like http://www.usfreeads.com , it has a simple look to it. So does http://craigslist I know there are a lot of options out there. If you are going with the snazzier design layout (http://www.theadpage.com), be sure that it will actually help bring customers. Sometimes the nicer layouts may detract from the actual classifieds page.
Anyway, that all for now.

I could not wait soe I've

pamphile - September 14, 2006 - 20:42

I could not wait soe I've turned 01Classifieds.com into a Craigslist powered by Drupal.

It uses custom code, no additional modules.

Hope you guys like it. Can someone post real ads as a test ? http://01classifieds.com

Marcek

Wholesale Directory
Business Letters
Free Classifieds

good job

mwu - September 14, 2006 - 22:03

wow, at first i didn't think it's drupal

Your 01Classifieds.com site looks great!

Walt Esquivel - September 15, 2006 - 00:30

Very nice clean appearance.

Just curious, but what's your business model? That is, do you expect to do like craigslist.org and simply charge (eventually) on some of the posts? Or do you expect to make revenues off of advertising such as with Google ads? Or both? The reason I ask is that sometimes I see a challenge so similar to, for example, the eBay model and I have to stop and ask myself (because I'm anal and have an MBA!), "How is this going to work, how is this business going to make money, and what exactly is the business model?"

I would encourage you to get as many of your friends, coworkers, colleagues, family to "seed" your listings because what you need are lots of people posting to it so that it becomes "valuable" in terms of being able to find things of value (for those looking to buy, for example) as well as offer things of value (for those looking to sell, for example).

I wish you great success! Again, your site looks really nice and clean. Great job!

Walt Esquivel, MBA, MA
President, Wellness Corps; Captain, USMC (Veteran)
$50 Hosting Discount Helps Projects Needing Financing

Thank you for the kind words

pamphile - September 15, 2006 - 17:36

Thank you for the kind words guys.

I can't spill all the beans on the total business model, but it's a work in progress that's constantly changing :)

Here is an example ad: http://01classifieds.com/node/116

Any plans to make this available?

deadelvis - October 16, 2006 - 20:36

looks perfect

Any plans to make this available?

Yes I'll make it available.

pamphile - October 17, 2006 - 04:41

Yes I'll make it available. I am selling the pre-configured database and my own custom files on http://pre-configured.com.

Your link leads to...

Walt Esquivel - October 18, 2006 - 19:05

...a "free parking page provided by namecheap".

Please let us know by reposting on this page when your pre-configured.com site is up and running.

Thanks!

Walt Esquivel, MBA, MA
President, Wellness Corps; Captain, USMC (Veteran)
$50 Hosting Discount Helps Projects Needing Financing

I'm working on getting it

pamphile - October 19, 2006 - 14:18

I'm working on getting it ready. As soon as it's ready I'll annouce it here.

thanks guys
Marcel
http://01classifieds.com
http://www.acmetutorials.com
http://01ftp.com

I believe the

VeryMisunderstood - October 17, 2006 - 04:49

I believe the lm_paypal.module released a short while ago adds classifieds functionality for those interested.

LM_PayPal Classified Ads

LeeMcL - October 18, 2006 - 18:53

LM_PayPal does indeed provide classified adverts. Have a look here:

http://drupal.org/project/lm_paypal

--
Lee McLoughlin
lmmrtech.com

you can find it

ydd - October 20, 2007 - 03:13

what's the best classified

eli03 - December 4, 2008 - 09:50

what's the best classified ad module created ever in drupal? so far this site looks good http://www.zuckerslist.com
----------
My Drupal site: promotional items corporate gifts srednarb - busby seo test - Come and Visit the beautiful Philippine Paradise!

now i make

trtint - May 10, 2009 - 23:19

I'm willing to make a contribution as well!

www.bildermax.com

Interesting!

classyfyd - June 24, 2009 - 20:10

Maybe you can find it as a feature listed here http://noahsclassifieds.org/ which provides feature-rich classifieds site templates. Maybe this helps.

[url=http://shopindia.co.in]Online Classifieds[/url]

 
 

Drupal is a registered trademark of Dries Buytaert.