Hi,
JA K2 filter’s already supports to show the term searching.
As we use template of K2 for Result page Layout in JA K2 filter, so in order to show the total result, please go to your K2 template folder. It can be located in:
<blockquote>componentscom_k2templatesdefault</blockquote>
if you override K2, it could be in:
templates/default template folder/html/com_k2/default/
find for:
category.php
Search for:
<div class="componentheading<?php echo $this->params->get('pageclass_sfx')?>">
<?php echo $this->escape($this->params->get('page_title')); ?>
</div>
<?php endif; ?>
add code below:
<div>
<?php if($this->pagination->total): ?>
Total: <?php echo $this->pagination->total; ?> results found.
<?php endif; ?>
</div>