By faqing on
In Teaser part, I want to disable "Log in or Register Add new comment" but I want to "Read more" to display.
Can anyone help me?
In Teaser part, I want to disable "Log in or Register Add new comment" but I want to "Read more" to display.
Can anyone help me?
Comments
handbook
this is marked as 4.7.x, but it should help you get started
http://drupal.org/node/44708
http://drupal.org/node/134442
Thanks jferjan. It seems
Thanks jferjan. It seems drupal 5 more complicated. For now, I give up.
I found this on site
You can do it this way. Add the following to template.php
Play around with it and change to suit.....
NOTE: I didn't write this code, I found it on this site last week (can't find it now though)...
Regards
Jamie
skiFFie: home of the accessibility module?
Thanks Jamie! I will try it
Thanks Jamie! I tried it did not work for drupal 5. I want to control $links in teaser display.
Hi, I tried this and it
Hi, I tried this and it works on Drupal 5:
go to modules/comment/comment.module
Around line 320 change the line from
if ($node->comment == COMMENT_NODE_READ_WRITE){
to
if (($node->comment == COMMENT_NODE_READ_WRITE)&&(!$node->teaser)) {