Hi there! This is a great mod!
I was wondering is there a way to add a "check all" button on the tags propositions page for people that have thousands of threads with that many propositions?
**Edit**
Oh I found a way to have them all checked by default I'll say how just in case anyone else has a lot of threads and just a few propositions you would like to uncheck. It involves editting a file.
Go to the upload folder > admincp > propositions_autotaggerfromcontentandtitle.php
Find:
Code:
$columns["$columnid"][] = '<div id="tag' . $tag['tagid'] . '" class="alt1" style="float:' . $stylevar[left] . ';clear:' . $stylevar[left] . '"><label for="taglist_' . $tag['tagid'] . '"><input type="checkbox" name="tag[' . $tag['tagid'] . ']" id="taglist_' . $tag['tagid'] . '" value="1" tabindex="1" /> ' . $tag['tagtext'] . '</label></div>';
Replace with:
Code:
$columns["$columnid"][] = '<div id="tag' . $tag['tagid'] . '" class="alt1" style="float:' . $stylevar[left] . ';clear:' . $stylevar[left] . '"><label for="taglist_' . $tag['tagid'] . '"><input type="checkbox" name="tag[' . $tag['tagid'] . ']" id="taglist_' . $tag['tagid'] . '" value="1" tabindex="1" checked="checked" /> ' . $tag['tagtext'] . '</label></div>';
I just added checked="checked" to the input.
If you want to change the number of propositions displayed on the page here's how (though keep in mind your server timing out, my server worked fine with it set to 250)
In the same file find:
Code:
$max_per_column = 15;
..and replace 15 with the number of propositions you'd like to be shown per column on each tag proposition page.