How to remove title link in node default comments section display page
selva8187 created an issue. See original summary.
Hi Friends,
I found answer
1. Copy comment.tpl.php from core comment module(core modules/comment/comment.tpl.php 2. Placed into our custom theme templates folder 3. Edit following line Instead of print $title 4. Use print check_plain($comment->subject); 5. Flush caches
print $title
print check_plain($comment->subject);
Automatically closed - issue fixed for 2 weeks with no activity.
Comments
Comment #2
selva8187 commentedHi Friends,
I found answer
1. Copy comment.tpl.php from core comment module(core modules/comment/comment.tpl.php
2. Placed into our custom theme templates folder
3. Edit following line Instead of
print $title4. Use
print check_plain($comment->subject);5. Flush caches
Comment #3
selva8187 commented