ApacheSolr Views Handlers (Proposal for new project)
ApacheSolr Views has been emerging as a very popular module that compliments core search & Apachesolr modules when site owners want more granular control on what data surfaces for in search requests.
There have been many requests for plugins on ApacheSolr Views module, These requests are result of limited filters that come by default with ApacheSolr Views.
Examples of some of the requests include providing support to Organic Groups,
og (organic groups) argument and filter
Node sticky
Questions about choosing the right faceted search setup
Hi:
I am a relative newbie and have been reading up on the different types of search available to Drupal. I am most interested in faceted search for my particular needs. Solr seems great but,as a startup, I have a tight budget so I'm trying to decide between the Lucene API Module or the Faceted Search Module, both of which also seem great, but I have a few questions....
Read morefaceted search
hi
D6, faceted search, no php-skills
i have a block where i include a normal search form with ...
<?php
print drupal_get_form('search_form');
?>now i want to use faceted search and want to include also the necessary code in the block. someone helped me, but i didn´t get it to work. he told me, that i should use following code ...
<?php
$block = module_invoke('faceted_search_ui', 'block', 'view', '1_keyword');
?>
<div class='search_inline'>
<?=$block['content']?>
</div>
<div style='clear:both'></div>