Hi, I'm new to Drupal 7 and I am in the process of learning how to do what I need it to do, but one of the things I just can't figure out or find a straight answer on is how to edit the content type Article to show the title as just plain text, and not a link? I don't want it to link to the full article. I just want the "read more" link to be the one that does that. Thanks

Comments

vm’s picture

if you want to unlink it for all content types, open node.tpl.php, find in the theme where the href tag is being used, remove it. save the tpl.php file. upload it to the server to be used. clear cache on site. test.

if you only want to unlink it for articles, copy node.tpl.php to a new file and name it node--article.tpl.php (where article is the machine name of your content type.), ediit the file and remove the href, upload it to your theme on the production server, clear cache. test.

audster’s picture

If you just want summaries to have "read more" as a link and not the title of the summary

http://drupal.org/node/1109724

Flyingsheep’s picture

Your answer helped me understand and I figured it out. Thanks