Here’s a quick way to remove category title in WordPress.
On your theme’s function.php, add
add_filter( 'get_the_archive_title_prefix', '__return_empty_string' );
If you’re using your own customized theme then just add it directly to the function.php file, if not, then make a child theme and add the codes on the child theme’s functions.php.