Xataface 2.0 - Tagger Module

Archived from the Xataface Users forum.

tonyvenneri — Sat Nov 10, 2012 12:10 pm

I am using the fantastic tagger module in my site.
The tag are related to a table of “tag” of 200 rows. I noticed that the cloud tag view on the left show only a subset of this table?
Is the any way to customize the number of tag showed in the related section?

Thanks


shannah — Sat Nov 10, 2012 1:52 pm

In the file
http://weblite.ca/svn/dataface/modules/ … tagger.php
The line

Code: Select all
$newsql .= ' group by `'.$labelCol.'` limit 50';

As a hint, the $field parameter in this method contains an associative array of all of the field directives for the tag field in the fields.ini file.

Or you could just hard code over it… but long term, this really should be parametrized.

-Steve