I'm trying to make a simple modification to the Bartik theme. I just want to disable the permalink in the user comments.
- I copied
/themes/bartik/templates/comment.tpl.php
to/sites/all/themes
and modified
/sites/all/themes/comment.tpl.php
as follows:<p class="comment-permalink"> <?php // print $permalink; ?> <!-- comment out permalink --> </p>
I cleared all caches but the permalink still displays.
If I make the modification above to the source file (/themes/bartik/templates/comment.tpl.php
), it works... but I read you're not supposed to modify the source file. That's why I moved it to /sites/all/themes
.
What am I doing wrong?