I have migrated a site from Drupal 6 to Drupal 7. Search form I have rendered in page.tpl.php like this
<?php $block = module_invoke('search','block_view','form'); print render($block['content']); ?>
I am able to search, but pagination is missing in the search result page.
In the theme folder I have search-results.tpl.php and search-results.tpl.php.
In the search-results.tpl.php <?php print $pager; ?>
is available.
If I change theme to default theme or core theme pagination is working fine.
What is the issue over here which is causing not showing pagination links?