There is also a problem to add thread title to existing tags;
Title: Paris, Rom, London, Dublin
Tags: Rom, London, Dublin
Suggested: nothing
/*
if (!empty($params['include_title']))
{
$text = $thread['title'] . ' ';
}
else
{
$text = '';
}
*/
$text = $thread['title'] . ' ';
If comment this if/then, i get to many tags, because all possible tags of the thread title are suggested, but i have also the ones that i dont have.
To have only the title, i also commnt
/* Concatenate posts */
foreach($posts AS $post)
{
//$text .= ' ' . $post['message'];
}
unset($posts);
Then i walk trough all threads, get all possible tags from the titles;
then i change back the source code and use the addon like normal.
To repeat it:
It should be possible to have
posts: 0
word count:1
title:yes
to fetch only the titles.
also there is a fault in the compare of "title" and "used tags";
here i miss words from my titles as suggestion. I will try to find the problem later, anyway my way solves my problem for now.