How can we remove these elapsed time indications below all the categories (themes?)

Comments

cpill’s picture

The modules doesn't have a span/div around it so you can't even target it with CSS. You basicly have to hack the module to ether wrap it in a span with a class/id you can target in your CSS or just remove it altogether.

Theres a line in 'taxonomy_block' function (/modules/taxonomy.module) that looks like:
$items[] = l($category->name .' ('. $category->count .')', 'taxonomy/term/'. $category->tid) .'<br />'. t('%time ago', array('%time' => format_interval(time() - $category->updated)));
replace it with:
$items[] = l($category->name, 'taxonomy/term/'. $category->tid);
to remove the time stamp your having problems with.