3
Yes, it's possible but it's more involved than it would appear since the name of the category is not saved with the entry - the category ID is. Here's the steps you'd need to complete:
* Inside ./blocks/wfdownloads_top.php you need to retrieve the 'titles' for each possible category (call it something like $category_title). The easiest way to do this is to retrieve the category titles using the category class for the allowed categories (you'll see this defined in the file as $allowed_cats).
* Once you have the names of the possible categories you'll need to assign the name of the category for the download entry that you're interested in to the block variables, inside the 'foreach' loop, something like:
$download['category'] = $category_title[$download['cid']];
* Finally you can use the smarty variable <{$download.category}> in the block template.