-1

I use drupal6 as my blog and don't want to require to register for making comments to my posts. However, I would like to require them to enter a name, an e-mail and a website (optional) as it is usual in blogs.

Is there any module for drupal that can do this? Can I use the core module for comments and the cck? What options do I have, and how do I do this?

txwikinger
  • 943
  • 7
  • 14

2 Answers2

1

Take a look at http://drupalmodules.com/module/node-comments i am not sure if you can make the field required or not but that modules allows you to have custom fields.

Or if you prefer you can alter the code yourself and create the fields any way you want it.

Simply add a field to comments

You should get a lot more answer with this question at http://www.stackoverflow.com

Prix
  • 4,881
  • 3
  • 24
  • 25
  • Thanks, I will have a look. Somehow this question does not fit any site perfectly, since it is not really a programming or development question either. – txwikinger Aug 21 '10 at 04:26
  • It is actually a php CMS question and fits Stackoverflow very much :) hence why you might actually get more answers there. – Prix Aug 21 '10 at 04:30
  • +1 for the link to drupalmodules. I found something that helped with additional things there. – txwikinger Aug 21 '10 at 05:52
  • So in other words this actually solves your problem and needs. GL – Prix Aug 21 '10 at 08:38
0

The comment module in drupal core can do the required functionality by itself.

It can be enabled by going to

Administer->content-type

then edit the node-type for which the contact info for anonymous users should be required and go to comment settings.

There is an option to disable, make it optional, or required it.

txwikinger
  • 943
  • 7
  • 14