By chantaspell on
Hi, I want to remove the link that says "username's blog" at the bottom of each post. I have read various ways of how to do that but none of them seem to work.
I am using drupal six and minnelli theme. I have tried commenting out the $links section of blog.module from the modules folder and clearing the cache. No joy.
Any ideas? many thanks!!
Comments
_
See my previous comment on another thread here: http://drupal.org/node/731548#comment-2682062
Yes!
Didn't find that when I was searching before...dunno why. Works a treat! Thank you!
_
excellent ;-)
Removing "username's blog" from the top of the blog listing
I came here looking to remove the "username's blog" from the top of the blog listing. ie, what you see at the top when you go to /blog/1. I couldn't find the right answer anywhere and decided to hack core. Of course, this is not the right way to do it since it will break on updates, but in case you're wondering how to do this the wrong way... Edit /modules/blog/blog.pages.inc in core and change
drupal_set_title($title = t("@name's blog", array('@name' => $account->name)));to
drupal_set_title($title = "");You'll lose the page's tag too, but that is a small price to pay to getting it done.
Perhaps others will comment as to the more correct way to do this. (Not in core, and not removing the tag). My guess is that it belongs in a theme's code, but getting that done was not obvious to me.