My head is spinning from trying to understand the hours of handbook pages and forum topics I've read. I'm wondering if anyone can point me in the right direction here. This is what I'm trying to do: change the titles of blocks (I'm using the dashboard to print taxonomyblock module blocks) to be urls that point to the same link that is generated by the "more" link (which I want to delete).

Here's the code for the more link I found in the taxonomy_block.module:

$content .= '<div class="more-link '. (($x % 2 == 1) ? 'even': 'odd') .'">';
    $content .= l(t("more"), 'taxonomy/term/'. implode(array_keys($tids), '+'), array("title" => t("View all."))) .'</div>';

My idea was to add this code somehow to the title printed by the block.tpl.php file in the line

<div class="title"><h2><?php print $block->subject ?></h2></div>

Does anyone have ideas on how to do this or know of a better way?

Thanks for any help...