@Fat_Nakago: To display both tag and categories in Simple Catch theme. You need to build child them and copy the function simplecatch_loop() from simplecatch_functions.php and add it in your child theme functions.php and then edit the condition
$tag = get_the_tags();
if (! $tag ) { ?>
<div class='tags'><?php _e( 'Categories: ', 'simplecatch' ); ?> <?php the_category(', '); ?> </div>
<?php } else {
the_tags( '<div class="tags"> Tags: ', ', ', '</div>');
}
to
<div class='tags'><?php _e( 'Categories: ', 'simplecatch' ); ?> <?php the_category(', '); ?> </div>
<?php
$tag = get_the_tags();
the_tags( '<div class="tags"> Tags: ', ', ', '</div>'); ?>