This module will provide autocomplete search suggestions.
The module is compatible with standard Drupal search, search views and Apache SOLR, but not reliant on any of them.
Auto-complete suggestions are created from 3 sources:
Titles of selected content types. This provides a starting point for suggestions and requires significant content to generate enough autocomplete suggestions.
Strings are tokenized, (lowercased, stopwords removed, short/long words removed and extra spaces removed).
Strings are broken into different length ngrams.
The score of each ngram is tallied and used for ordering.
Priority suggestions added via the admin interface. These suggestions have the highest score and allow the admin to create a set of useful suggestions where the initial set created doesn't proved enough quality auto-complete suggestions.
Strings are tokenized, (lowercased, stopwords removed, short/long words removed and extra spaces removed).
Strings are broken into different length ngrams.
Priority ngrams start with the highest score.
Surfer searches. These suggestions provide an organic way to create successful autocomplete suggestions.
Surfer searches are sourced when the search is submitted.
Strings are tokenized, (lowercased, stopwords removed, short/long words removed and extra spaces removed).
If the tokenized strings exists as an ngram then the score is increased.
If the tokeized string doesn't exist then it is scored and generated ngrams added.
Prepopulates Name fields (from the Name module) on contact forms from the logged-in user account. Additionally, stores the combined name in the "name" field on the contact form upon saving.