I am trying to theme blog nodes, and i would like to remove a link that is output by:

<?php print $links ?>

What i want to remove is the pieces related to username specific blog. In my case, the username is admin, so i don't want to see admin's blog on my site. I suppose i could just use some css to disable the visibility of the class blog_usernames_blog but that feels like a hack to me. Also, i've seen some area's where users are commenting lines out of the core blog module.

Any ideas?

Comments

Technikal’s picture

you will need to theme your blog tpl file and extract individual variables like so

<?php print $node->links[blog_usernames_blog][the var you want]

install devel and use dsm ()

hope that heps