Remove post title in catogory page

In your page template you can use the conditional statement is_category($category) to determine if the header should show:

 if (!is_category('fun')){ the_title(); }

… OR …

Better: You can create a category template and not include the_title() in that template file. This is a cleaner way to ensure only that one category page leaves out the page title.