Drupal7 Solr搜索|意见|没有结果模板(?)

时间:2015-08-27 15:23:33

标签: solr drupal-7 drupal-views

我使用Drupal 7的Solr Search Views模块显示我的搜索结果。

然而,当没有结果时,没有显示的消息,我无法弄清楚如何设置一个和/或在哪里找到显示它的设置。

任何人都可以帮忙吗?

感谢。

1 个答案:

答案 0 :(得分:0)

我通过修改'views-view - viewName.tpl.php'得到了我想要的结果:

原创($ empty或无结果时未显示任何内容):

<?php if ($rows): ?>
    <?php print $rows; ?>
<?php elseif ($empty): ?>
    <?php print $empty; ?>
<?php endif; ?>

新建(未找到结果时显示自定义消息):

<?php if ($rows): ?>
    <?php print $rows; ?>
<?php else: ?>
    <h2>There are no results for this term. Please refine your search.</h2>
<?php endif; ?>

最大的区别是从'elseif($ empty):'变为简单的'else:'。