How do we show the Category Description on the pages where the user is prompted to choose a category for either Events, Groups, or Pages? I can not find a setting to enable this in the backend.
<a class="btn btn-es <?php echo $category->container ? 'is-container' : ''; ?>" href="<?php echo ESR::$clusterType(array('controller' => $clusterType , 'task' => 'selectCategory' , 'category_id' => $category->id));?>">
<img class="avatar" src="<?php echo $category->getAvatar(SOCIAL_AVATAR_SQUARE);?>" alt="<?php echo $this->html('string.escape', $category->getTitle());?>" />
<div class="es-title">
<?php echo $category->getTitle();?><br>
<div class="line-separator"></div>
<?php echo $category->getDescription();?><br>
</div>
</a>