Hello,
Searchtools-Module:
http://www.websitebaker2.org/forum/index.php/topic,10133.msg59499.html#msg59499Unfortunately, there is no English documentation yet.
If you can use the keywords or description-field of each page for your tags (and only for your tags), you may use the appropriate tagcloud from this module.
See
http://www.websitebaker2.org/forum/index.php/topic,10133.msg61804.html#msg61804You need to make your own CSS for the tagcloud (no sizing, no aging, prettier appearance).
Each tagcloud-element becomes a link to the search-function, automatically.
If you want to give this a try, just
- install module (->
searchtools_0.54.55 .zip. You don't need searchtools_geoip_0
8.09.zip)
- enter some keywords (or descriptions) to your pages
- create a CODE-section
if(file_exists(WB_PATH.'/modules/searchtools/tagcloud/tagcloud.php')) {
require_once(WB_PATH.'/modules/searchtools/tagcloud/tagcloud.php');
$tags = fetch_tagcloud('linear', 99999, 0, 'st_module_keywords');
display_tagcloud($tags, 'Search:');
}
use
'st_module_keywords' for keywords and
'st_module_descripti ons' for descriptions.
dispaly_tagcloud() will use
WB_PATH.'/modules/searchtools/tagcloud/tagcloud.css' as CSS.
Just alter this file, or use your one
display_tagcloud($tags, 'Search:', '/var/local/path_to_your_own/style.css');thorn.