Updated:
This belongs to the Articles Category module, the one you're using on homepage is using news-11 layout. So you can modify this file:
/templates/ja_good/html/mod_articles_category/news-11.php
at approx line 157, you can see this code:
<dd class="mod-articles-category-category">
<?php echo $item->displayCategoryTitle; ?>
</dd>
change it to:
<dd class="mod-articles-category-category">
<span><?php echo $item->category_title; ?></span>
</dd>
this change will help to show the category title without link. However, you will need to add custom style for this category title as with above change, it will affect the markup and the old style will be gone.
Regards