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
replacing drupal 6 core search with views search
Hi all
I am trying to replace drupals core search with my own views search. the search in views work but only if you type its exact url would you see the views search. and this is where I am having hard time putting the two together.
I am using the function hook_menu_alter to replace the drupal core search with my views search path. heres the code thats on my custom module file:
<?php
function searchy_perm() {
return array('access searchy', 'administer searchy');
} // function searchy_perm
function searchy_menu_alter(&$callbacks) {
Read more