I got it in kind of a round about way using wordpress built in functions rather than toolbox.
Look at content.php and find the first entry-meta div
<div class="entry-meta">
<?php toolbox_posted_on(); ?>
To get the categories you can add this to the line.
<div class="entry-meta">
<?php toolbox_posted_on(); ?>
from category <?php the_category(', '); ?>
</div><!-- .entry-meta -->