I think this is not an issue with Shortcoder wordpress plugin. This is an unrelated topic related to this plugin.
Anyway, the solution is … you have to add this code to the functions.php file in your theme directory anywhere:
function shortcode_print_category( $atts ) {
return single_cat_title();
}
add_shortcode( ‘state’, ‘shortcode_print_category’ );
I’ve not tested but should work.