In your theme you need to add a conditional tag like:
replace your theme date code i.e
<?php the_time('F jS, Y') ?>
with
<?php if (in_category('133')) {}
else
the_time('F jS, Y'); ?>
here 133 is category id, the category for which you do not want to show the date on the posts filed in that category…