paulus1031
Hi
open file "/html/com_search/search/default_results.php" in template "ja_megastore".
Find
<h3 class="result-title">
<?php if ($result->href) : ?>
<a href="<?php echo JRoute::_($result->href); ?>"
<?php if ($result->browsernav == 1) : ?>
target="_blank"
<?php endif; ?>>
<?php echo $this->escape($result->title); ?>
</a>
<?php else: ?>
<?php echo $this->escape($result->title); ?>
<?php endif; ?>
</h3>
replace it with
change to
<h3 class="result-title">
<?php echo $this->pagination->limitstart + $result->count . '. '; ?>
<?php if ($result->href) : ?>
<a href="<?php echo JRoute::_($result->href); ?>"<?php if ($result->browsernav == 1) : ?> target="_blank"<?php endif; ?>>
<?php echo $result->title; ?>
</a>
<?php else : ?>
<?php echo $result->title; ?>
<?php endif; ?>
</h3>
Save and check.
Do the same for other template.
We will fix it in next update of template.
Regards